Move to simpler file structure
This commit is contained in:
parent
fe72523a5a
commit
d71a28e1c8
33 changed files with 374 additions and 406 deletions
19
templates/env.j2
Normal file
19
templates/env.j2
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
POSTGRES_HOST="{{ pgbouncer_listen_address }}"
|
||||
POSTGRES_PORT="{{ pgbouncer_port }}"
|
||||
POSTGRES_NAME="{{ pgbouncer_name }}"
|
||||
POSTGRES_USER="{{ pgbouncer_user }}"
|
||||
POSTGRES_PASSWORD="{{ pgbouncer_password }}"
|
||||
|
||||
DJANGO_SETTINGS_MODULE="{{ django_settings_module }}"
|
||||
DJANGO_SECRET_KEY="{{ django_secret_key }}"
|
||||
|
||||
REDDIT_CLIENT_ID="{{ reddit_client_id }}"
|
||||
REDDIT_CLIENT_SECRET="{{ reddit_client_secret }}"
|
||||
REDDIT_CALLBACK_URL="{{ reddit_callback_url }}"
|
||||
|
||||
TWITTER_CONSUMER_ID="{{ twitter_client_id }}"
|
||||
TWITTER_CONSUMER_SECRET="{{ twitter_client_secret }}"
|
||||
TWITTER_REDIRECT_URL="{{ twitter_redirect_url }}"
|
||||
|
||||
SENTRY_DSN="{{ sentry_dsn }}"
|
||||
ADMINS="{{ admins }}"
|
||||
Reference in a new issue