2020-10-04 11:37:38 +03:00
|
|
|
env: development
|
|
|
|
|
|
|
|
server:
|
2020-12-13 00:07:00 +03:00
|
|
|
listen_ipv4: 127.0.0.1 # leave blank to disable ipv4
|
|
|
|
listen_ipv6: ::1 # leave blank to disable ipv6
|
|
|
|
tls_cert_path: # leave blank to not use https
|
|
|
|
tls_key_path: # leave blank to not use https
|
2020-10-04 11:37:38 +03:00
|
|
|
port: 3000
|
|
|
|
base_path: /
|
|
|
|
|
|
|
|
app:
|
2020-10-16 17:21:13 +03:00
|
|
|
aggregation_time: '02:15' # time at which to run daily aggregation batch jobs
|
2021-01-17 11:24:09 +03:00
|
|
|
counting_time: '05:15' # time at which to run daily job to count total hours tracked in the system
|
2020-10-04 11:37:38 +03:00
|
|
|
custom_languages:
|
|
|
|
vue: Vue
|
|
|
|
jsx: JSX
|
|
|
|
|
|
|
|
db:
|
|
|
|
host: # leave blank when using sqlite3
|
|
|
|
port: # leave blank when using sqlite3
|
|
|
|
user: # leave blank when using sqlite3
|
|
|
|
password: # leave blank when using sqlite3
|
|
|
|
name: wakapi_db.db # database name for mysql / postgres or file path for sqlite (e.g. /tmp/wakapi.db)
|
|
|
|
dialect: sqlite3 # mysql, postgres, sqlite3
|
2021-01-18 23:34:08 +03:00
|
|
|
max_conn: 2 # maximum number of concurrent connections to maintain
|
|
|
|
ssl: false # whether to use tls for db connection (must be true for cockroachdb) (ignored for mysql and sqlite)
|
2020-10-04 11:37:38 +03:00
|
|
|
|
|
|
|
security:
|
|
|
|
password_salt: # CHANGE !
|
|
|
|
insecure_cookies: false
|
2020-11-22 00:30:56 +03:00
|
|
|
cookie_max_age: 172800
|