Created
January 31, 2023 17:21
-
-
Save angvp/b28a9be7107f53500e5a2d65a75367ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Place this file in ./python-services/../.env, or set as your environment variables | |
## Application Settings | |
ADMIN_SLUG=admin | |
CELERY_TASK_ALWAYS_EAGER=True | |
CELERY_ALWAYS_EAGER=True | |
DEBUG=True | |
DEPLOY_BRANCH=master | |
DMANAGER_URL=http://127.0.0.1:5000/api/ | |
ENCRYPTION_KEY=12345678901234567890123456789012 | |
# Databases | |
LOG_LEVEL=DEBUG | |
INTERNAL_IPS=127.0.0.1 | |
SECRET_KEY=12312312312312312312312312312354545454545454545454545454545454554545 | |
STATIC_URL=/static/ | |
## Email Services | |
EMAIL_URL=smtp+tls://user:pass@smtphost:25/ | |
[email protected] | |
[email protected] | |
[email protected] | |
## Other External Services | |
#BROKER_URL=amqp://guest:guest@localhost:5672/ | |
#CACHE_URL=memcache://127.0.0.1:11211,127.0.0.1:11212,127.0.0.1:11213 | |
CACHE_URL=redis://127.0.0.1:6379/0?client_class=django_redis.client.DefaultClient&timeout=7200&key_prefix=d1g1t | |
#DATABASE_REPLICA1_URL=psql://user:pass@dbhost_replica1/db | |
#DATABASE_REPLICA2_URL=psql://user:pass@dbhost_replica2/db | |
#DATABASE_URL=psql://user:pass@dbhost/db | |
# CALC_CACHE_URL=mongodb://127.0.0.1:27017/d1g1t | |
CALC_CACHE_URL= | |
ACCOUNTABLE_CACHE_URL=elasticsearch://127.0.0.1:9200/ | |
# DATABASE_URL=psql://postgres@localhost:5432/d1g1t | |
DATABASE_URL=psql://postgres:[email protected]:5432/d1g1t | |
# MONGODB_URL=mongodb://127.0.0.1:27017/d1g1t | |
SEARCH_URL=elasticsearch://127.0.0.1:9200/d1g1t-dev | |
#SENTRY_URL=https://[email protected]/1111111 | |
## test this for 11761 | |
SUBENV=rc2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment