remove old configuration
This commit is contained in:
parent
0c0f0e7e7c
commit
2609d6f39c
2 changed files with 0 additions and 36 deletions
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"title": "Gancio",
|
||||
"description": "A shared agenda for local communities",
|
||||
"baseurl": "http://localhost:13120",
|
||||
"server": {
|
||||
"host": "localhost",
|
||||
"port": 13120
|
||||
},
|
||||
"log_level": "debug",
|
||||
"log_path": "./logs",
|
||||
"db": {
|
||||
"dialect": "sqlite",
|
||||
"storage": "./db.sqlite",
|
||||
"logging": false
|
||||
},
|
||||
"upload_path": "./",
|
||||
"smtp": {
|
||||
"auth": {
|
||||
"user": "",
|
||||
"pass": ""
|
||||
},
|
||||
"secure": true,
|
||||
"host": ""
|
||||
},
|
||||
"admin_email": "admin"
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
// DO NOT TOUCH THIS FILE
|
||||
const fs = require('fs')
|
||||
const config_path = process.env.config_path
|
||||
|
||||
let config = {}
|
||||
if (fs.existsSync(config_path)) {
|
||||
config = require(config_path)
|
||||
}
|
||||
|
||||
module.exports = config
|
Loading…
Reference in a new issue