ily.li/config/default.json5

44 lines
927 B
Plaintext
Raw Normal View History

2020-11-02 18:17:55 +01:00
{
2020-06-27 17:20:06 +02:00
app: {
name: 'Example App',
2020-06-27 18:07:58 +02:00
contact_email: 'contact@example.net'
2020-06-27 17:20:06 +02:00
},
log_level: "DEV",
db_log_level: "ERROR",
public_url: "http://localhost:4899",
public_websocket_url: "ws://localhost:4899",
port: 4899,
mysql: {
connectionLimit: 10,
host: "localhost",
user: "root",
password: "",
2020-07-06 11:08:31 +02:00
database: "example_app",
2020-06-27 17:20:06 +02:00
create_database_automatically: false
},
redis: {
host: "127.0.0.1",
port: 6379,
2020-07-06 11:08:31 +02:00
prefix: 'example_app'
2020-06-27 17:20:06 +02:00
},
session: {
cookie: {
secure: false
}
},
mail: {
host: "127.0.0.1",
port: "1025",
secure: false,
username: "",
password: "",
2020-06-27 18:07:58 +02:00
allow_invalid_tls: true,
from: 'contact@example.net',
from_name: 'Example App',
2020-06-27 17:20:06 +02:00
},
view: {
cache: false
},
approval_mode: false,
}