-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevelopment.env
44 lines (31 loc) · 1.24 KB
/
development.env
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
##########################
# Configuration settings #
##########################
SUBJECT_PREFIX=creditors:
WEBSERVER_PROCESSES=1
WEBSERVER_THREADS=3
WEBSERVER_PORT=8006
SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://swpt_login:swpt_login@localhost:5438/test
APP_LOG_LEVEL=info
APP_LOG_FORMAT=text
###########################################################
# Internal configuration settings. They may change from #
# version to version. Use these with caution! #
###########################################################
APP_ASSOCIATED_LOGGERS=swpt_pythonlib.flask_signalbus.signalbus_cli
###########################################################
# Development settings. Should not be used in production! #
###########################################################
FLASK_APP=swpt_login
FLASK_RUN_PORT=8006
SQLALCHEMY_ECHO=False
############################################################
# Settings for the docker-compose examples. These are #
# used only for testing and demonstration purposes, and #
# should not be used in production! #
############################################################
POSTGRES_VERSION=13.0
POSTGRES_DB=test
POSTGRES_USER=test
POSTGRES_PASSWORD=test
POSTGRES_LOCAL_PORT=5438