swaf/config/default.json5

51 lines
1.1 KiB
Plaintext

{
app: {
name: 'Example App',
contact_email: 'contact@example.net'
},
log: {
level: "DEBUG",
verbose: true,
db_level: "ERROR",
},
base_url: "http://localhost:4899",
public_websocket_url: "ws://localhost:4899",
listen_addr: '127.0.0.1',
port: 4899,
gitlab_webhook_token: 'default',
mysql: {
connectionLimit: 10,
host: "localhost",
user: "root",
password: "",
database: "swaf",
create_database_automatically: false
},
redis: {
host: "127.0.0.1",
port: 6379,
prefix: 'swaf'
},
session: {
secret: 'default',
cookie: {
secure: false,
maxAge: 2592000000, // 30 days
}
},
mail: {
host: "127.0.0.1",
port: "1025",
secure: false,
username: "",
password: "",
allow_invalid_tls: true,
from: 'contact@example.net',
from_name: 'Example App',
},
view: {
cache: false
},
approval_mode: false,
}