Skip to content

Instantly share code, notes, and snippets.

@angvp
Created January 31, 2023 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angvp/b28a9be7107f53500e5a2d65a75367ea to your computer and use it in GitHub Desktop.
Save angvp/b28a9be7107f53500e5a2d65a75367ea to your computer and use it in GitHub Desktop.
## 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/
ERRORS_EMAIL=dev@d1g1t.com
FROM_EMAIL=no-reply@d1g1twealth.com
SUPPORT_EMAIL=dev@d1g1t.com
## 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:postgres@127.0.0.1:5432/d1g1t
# MONGODB_URL=mongodb://127.0.0.1:27017/d1g1t
SEARCH_URL=elasticsearch://127.0.0.1:9200/d1g1t-dev
#SENTRY_URL=https://11111111111111111111@sentry.io/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