-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.conf
56 lines (41 loc) · 1.13 KB
/
settings.conf
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
# Allow DEBUG mode
DEBUG=True
# Django superuser credentials
ADMIN_USER=admin
ADMIN_PASSWORD=password
ADMIN_EMAIL=
# PostgreSQL
POSTGRESQL_USERNAME=user
POSTGRESQL_PASSWORD=password
POSTGRESQL_DATABASE=db
# RabbitMQ settings
RABBITMQ_DEFAULT_USER=user
RABBITMQ_DEFAULT_PASS=password
# Backend Settings
BACKEND_PORT=8000
# Set port used by Flower
FLOWER_PORT=5555
# Base iamge for building the Back-end image
DOCKER_LIBS_IMAGE=dhealth/pylibs-toolkit:latest
# Docker image name
DOCKER_BACKEND_IMAGE=dhealth/backend
# Set to 'True' to enable eddl CS_GPU computing service (default: False)
EDDL_WITH_CUDA=False
# Set path to your local copy of the Back-end
#BACKEND_LOCAL_PATH="<ABSOLUTE_PATH_TO_BACKEND>"
# Comma separated allowed hosts
ALLOWED_HOSTS=localhost,127.0.0.1
# Comma separated CORS domains
CORS_ORIGIN_WHITELIST=http://localhost:4200
# Data directories
DATA_DIR=/data
# Celery settings
CELERY_ACCEPT_CONTENT=json
CELERY_RESULT_BACKEND=db+sqlite:///results.sqlite
CELERY_TASK_SERIALIZER=json
# Social login settings
SOCIAL_AUTH_GITHUB_KEY=
SOCIAL_AUTH_GITHUB_SECRET=
# Email backend settings
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=