-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.template
48 lines (37 loc) · 1.15 KB
/
env.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
# Backend/Django
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG=1
LOGGING_LEVEL="DEBUG"
AUTORELOAD=1
ORCHESTRATION_URL="http://localhost"
# CORS
DJANGO_ALLOWED_HOSTS="localhost 127.0.0.1 [::1]"
DJANGO_CSRF_TRUSTED_ORIGINS="http://localhost http://127.0.0.1"
# AMQP
RABBITMQ_HOST="rabbitmq"
RABBITMQ_PORT="5672"
RABBITMQ_ERLANG_COOKIE="SWQOKODSQALRPCLNMEQG"
RABBITMQ_DEFAULT_USER="orcadmin"
RABBITMQ_DEFAULT_PASS="adminorc"
RABBITMQ_DEFAULT_VHOST="/"
# Database
# DB_ENGINE=django.db.backends.postgresql
# DB_USER=orchadmin
# DB_PASSWORD=adminorch
# DB_DATABASE=orchestration
# DB_HOST=database
# DB_PORT=5432
# SECURITY WARNING: keep the secret key used in production secret!
# SECRET_KEY=
DB_DIR="/db"
LOG_DIR="/logs"
# directory where it will contain the processing of the pipelines.
PROCESSING_DIR=/processes
# directory where it will contain the source code of the pipelines.
PIPELINES_DIR=/pipelines
# directory where it will contain the datasets.
DATASETS_DIR=/datasets
# Client ID and Client Secret must be registered in Django Admin
# after backend Setup, in the Django Oauth Applications interface
# DEV_CLIENT_ID=
# DEV_CLIENT_SECRET=