generated from UnBArqDsw/RepositorioTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.toml
36 lines (30 loc) · 979 Bytes
/
settings.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[default]
DEBUG = false
SQLALCHEMY_DATABASE_URI = 'sqlite:///development.db'
SQLALCHEMY_TRACK_MODIFICATIONS = false
TITLE = "QRodizio"
SECRET_KEY = "this-is-super-secret!"
EXTENSIONS = [
"qrodizio.ext.database:init_app",
"qrodizio.ext.commands:init_app",
"qrodizio.ext.cors:init_app",
"qrodizio.ext.authentication:init_app",
"qrodizio.ext.socketio:init_app",
"qrodizio.views.api:init_app",
"qrodizio.views.socketio:init_app",
]
[development]
#EXTENSIONS = [
# "OTHER_EXTENSIONS_HERE",
# "dynaconf_merge_unique" # to reuse extensions list from [default]
#]
DEBUG = true
SQLALCHEMY_DATABASE_URI = "postgres://postgres:postgres@db/qrodizio_development"
BACK_BASE_URL = "http://localhost:5000"
FRONT_BASE_URL = "http://localhost:8080"
[testing]
SQLALCHEMY_DATABASE_URI = 'sqlite:///testing.db'
BACK_BASE_URL = "http://localhost:5000"
FRONT_BASE_URL = "http://localhost:8080"
#[production]
#SQLALCHEMY_DATABASE_URI = 'sqlite:///production.db'