You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
521 B
TOML
27 lines
521 B
TOML
[common]
|
|
database_engine_dsn = "postgresql://runcible:@localhost/dev_runcible_db"
|
|
|
|
[common.wsgicors]
|
|
headers="*"
|
|
methods="*"
|
|
maxage="180"
|
|
origin="*"
|
|
|
|
[common.whitenoise]
|
|
root = "static"
|
|
prefix = "/static"
|
|
autorefresh = true
|
|
|
|
[dev]
|
|
database_engine_params.echo = true
|
|
database_engine_params.connect_args.options = "-c timezone=utc"
|
|
|
|
[test]
|
|
database_engine_dsn = "postgresql://runcible:@localhost/test_runcible_db"
|
|
database_engine_params.echo = true
|
|
|
|
[prod.whitenoise]
|
|
root = "static"
|
|
prefix = "/static"
|
|
autorefresh = false
|