-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.toml
33 lines (29 loc) · 975 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
[default]
APP_NAME = "project"
DATABASE = "sqlite"
SECRET_KEY = "548JM6@aK!pO|DN:US,xUG6zF52yZXP"
SQLALCHEMY_TRACK_MODIFICATIONS = false
EXTENSIONS = [
"project.ext.restapi:init_app",
"project.ext.database:init_app"
]
SQLALCHEMY_DATABASE_URI = 'sqlite:///db.default.sqlite'
[development]
FLASK_ENV = "development"
INCLUDES = ["default"]
TEMPLATES_AUTO_RELOAD = true
DEBUG = true
SQLALCHEMY_DATABASE_URI = 'sqlite:///db.development.dynaconf.sqlite'
[testing]
FLASK_ENV = "testing"
INCLUDES = ["default"]
SQLALCHEMY_DATABASE_URI = "sqlite:///db.testing.sqlite"
DEBUG = true
[production]
FLASK_ENV = "production"
INCLUDES = ["default"]
SQLALCHEMY_DATABASE_URI = "postgresql://slj_user:WEUOkN2UVuZzZdTRUcLHrCZA52pNSWPf@dpg-cms2j6821fec73civqtg-a.oregon-postgres.render.com/slj_database"
[homologacao]
FLASK_ENV = "homologacao"
INCLUDES = ["default"]
SQLALCHEMY_DATABASE_URI = "postgresql://hpnkbpae:k41SHz9huxu3zVgQhvjq7b7MXYv5n8gK@baasu.db.elephantsql.com/hpnkbpae"