-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
47 lines (39 loc) · 1.01 KB
/
.env.example
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
37
38
39
40
41
42
43
44
45
46
47
#
# Service: database
#
# (Configurable) Database name
POSTGRES_DB=uselevers_db
# (Configurable) Database username
POSTGRES_USER=uselevers_user
# (Configurable) Database password
POSTGRES_PASSWORD=default
#
# Service: frontend
#
# (Configurable) Frontend base URL (Public)
FRONTEND_BASE_URL=http://not_implemented
#
# Service: uselevers
#
# (Configurable) App base URL (Public)
APP_BASE_URL=http://localhost:7000
# (Configurable) Global log level
LOG_LEVEL=DEBUG
# (Fixed) Database used by the app
SQLALCHEMY_DATABASE_URI=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost/${POSTGRES_DB}
# (Configurable) Frontend CORS origin
CORS_ORIGIN_FRONTEND=${FRONTEND_BASE_URL}
#
# Development flags
# Used by both the worker and app service
#
# (Configurable) Enable FastAPI debug logging
DEV_FASTAPI_DEBUG=true
# (Configurable) Enable automatic migrations on startup
DEV_MIGRATIONS=true
# (Configurable) Enable debug features such as the test-page product
DEV_FEATURES=true
#
# Custom flags
# Put your custom flags here
#