-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.development.template
48 lines (40 loc) · 1.07 KB
/
.env.development.template
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
40
41
42
43
44
45
46
47
48
# Database for application data storate
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
PGADMIN_DEFAULT_PASSWORD=postgres
POSTGRES_HOST=db
POSTGRES_PORT=5432
POSTGRES_DB=anomaly_labs
# RabbitMQ
RABBITMQ_DEFAULT_USER=rabbitmq
RABBITMQ_DEFAULT_PASS=rabbitmq
RABBITMQ_NODE_PORT=5672
RABBITMQ_HOST=rabbitmq
# Memory store for Cookies and queues
REDIS_HOST=redis
REDIS_PORT=6379
# S3 Object store configuration
# Note that the ROOT_USER is the ACCESS_KEY and the
# ROOT_PASSWORD is the SECRET_KEY for development buckets
S3_ENDPOINT=localhost
S3_BUCKET_NAME=devel
S3_PORT=9000
S3_ACCESS_KEY=minioadminaccess
S3_SECRET_KEY=minioadminsecret
S3_REGION=any
S3_USE_SSL=True
# Email relay used by the application
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=smtpuser
SMTP_PASSWORD=secret
EMAIL_FROM="Project Admin <[email protected]>"
# SMS gateway used by the application
SMS_API_KEY=smsapi
SMS_API_SECRET=smsecret
SMS_FROM=ANOMALY
# Cookie secret
JWT_SECRET_KEY=asecretthatmustbeset
# Access to object storeage by Minio
MINIO_ROOT_USER=minioadminaccess
MINIO_ROOT_PASSWORD=minioadminsecret