49 lines
997 B
Plaintext
49 lines
997 B
Plaintext
# ADDRESSES
|
|
export EVERYTHING_LISTEN=127.0.0.1 # security by default!
|
|
# export EVERYTHING_PORT=9090
|
|
|
|
export DJANGO_HOST=127.0.0.1
|
|
export CONTEXT=Locale
|
|
# export MYHOSTNAME=
|
|
|
|
# PORTS
|
|
export DJANGO_PORT=8000
|
|
export DBG_PORT=9090
|
|
export VUE_PORT=9091
|
|
|
|
# DJANGO DB
|
|
export DB_NAME=sangue
|
|
export DB_USER=sangue
|
|
export DB_PASSWORD=sangue
|
|
export DB_HOST=127.0.0.1
|
|
# export DB_PORT=5432
|
|
export DB_TEST_NAME=sangue_test
|
|
|
|
# DJANGO MISC
|
|
export SECRET_KEY=FpstwQgWItsIpsaBuPlTwZIYynCdkdrIieYstnifekcgxfxMdIqVsflNuGrDTbFeiCUTMiGonXDfjyEKxHeHgfXFIwlUTiFdmVId
|
|
export MEDIA_ROOT=$(pwd)/django_upload/
|
|
export MEDIA_URL=uploads/
|
|
export DEBUG=true
|
|
export DEBUG_TOOLBAR=true
|
|
# export DJANGO_LOG_LEVEL=DEBUG
|
|
# export DJANGO_LOG_SQL
|
|
|
|
# MQTT
|
|
# export ENABLE_MQTT=
|
|
# export MQTT_HOST=
|
|
# export MQTT_PORT=
|
|
|
|
# REDIS
|
|
# export REDIS_HOST=
|
|
# export REDIS_PORT=
|
|
|
|
# SECURITY
|
|
# export CSRF_COOKIE_SECURE=
|
|
# export CSRF_TRUSTED_ORIGINS=
|
|
# export SECURE_SSL_REDIRECT=
|
|
# export SESSION_COOKIE_SECURE=
|
|
|
|
|
|
# workarounds
|
|
export DOLLAR=$
|