forked from inkandfeet/inkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.sample
39 lines (29 loc) · 952 Bytes
/
env.sample
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
# Django Config
PORT=8120
ENV=dev
DJANGO_SETTINGS_MODULE=inkshop.envs.dev
PYTHONIOENCODING=utf-8
DJANGO_SECRET_KEY=SECRET_KEY_HERE
# Inkshop
INKSHOP_DOMAIN=mycompany.com
INKSHOP_NAMESPACE=mycompany
INKSHOP_FRIENDLY_NAME=My Company Name
INKSHOP_ENCRYPTION_KEY=ENCRYPTION_KEY_HERE
INKSHOP_ENCRYPTION_SALT=ENCRYPTION_SALT_HERE
INKSHOP_ADMIN_NAME=Jill Williams
INKSHOP_ADMIN_EMAIL=jill@mycompany.com
INKSHOP_FROM_EMAIL=notifications@mycompany.com
MAILGUN_API_KEY=key-12345678901234567890
MAILGUN_SENDER_DOMAIN=mail.mycompany.com
AWS_STORAGE_BUCKET_NAME=inkshop.mycompany.com
AWS_S3_HOST=s3-us-west-2.amazonaws.com
# Services and Infrastructure
RABBITMQ_ERLANG_COOKIE=09876543098765432
RABBITMQ_DEFAULT_USER=rabbitmq
RABBITMQ_DEFAULT_PASS=rabbitmq
POSTGRES_DB=inkshop
POSTGRES_USER=postgres
# These should be identical
POSTGRES_PASSWORD=your_secure_postgres_password
PGPASSWORD=your_secure_postgres_password
CELERY_BROKER_URL=redis://redis:6379/0