-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env_sample
75 lines (57 loc) · 2.35 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# ----------------------------------------------------------------------------
# General
# ----------------------------------------------------------------------------
DOCKER_DEBUG=true
SITE_DOMAIN=http://localhost
# ----------------------------------------------------------------------------
# Database
# ----------------------------------------------------------------------------
DB_HOST=postgres
DB_NAME=postgres
DB_USER=postgres
DB_PASSWORD=postgres
DB_PORT=5432
# ----------------------------------------------------------------------------
# Celery/Rabbit
# ----------------------------------------------------------------------------
RABBITMQ_DEFAULT_USER=guest
RABBITMQ_DEFAULT_PASS=guest
BROKER_URL=amqp://guest:guest@rabbitmq:5672//
# ----------------------------------------------------------------------------
# Chahub Auth
# ----------------------------------------------------------------------------
SOCIAL_AUTH_CHAHUB_BASE_URL=
SOCIAL_AUTH_CODALAB_KEY=
SOCIAL_AUTH_CODALAB_SECRET=
# ----------------------------------------------------------------------------
# Storage
# ----------------------------------------------------------------------------
# Minio local storage example
MINIO_ACCESS_KEY=testkey
MINIO_SECRET_KEY=testsecret
# NOTE! if you change this port, change it in AWS_S3_ENDPOINT_URL as well
MINIO_PORT=9000
# Minio local storage Django settings (mocks an S3 endpoint)
AWS_ACCESS_KEY_ID=testkey
AWS_SECRET_ACCESS_KEY=testsecret
AWS_STORAGE_BUCKET_NAME=public
# NOTE! port 9000 here should match $MINIO_PORT
AWS_S3_ENDPOINT_URL=http://docker.for.mac.localhost:9000/
AWS_QUERYSTRING_AUTH=False
# ----------------------------------------------------------------------------
# Codalab/Chagrade interaction
# ----------------------------------------------------------------------------
# Bot username/password to make submissions under
CODALAB_SUBMISSION_USERNAME=
CODALAB_SUBMISSION_PASSWORD=
# ----------------------------------------------------------------------------
# EMAIL
# ----------------------------------------------------------------------------
SENDGRID_FROM_EMAIL=
SENDGRID_USERNAME=
SENDGRID_PASSWORD=
# ----------------------------------------------------------------------------
# CADDY
# ----------------------------------------------------------------------------
CADDY_DOMAIN=localhost:80
CADDY_TLS_EMAIL=<Leave blank for no tls>