-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env-sample
103 lines (94 loc) · 2.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
######################
###### Django ######
######################
# Django Secret
DJANGO_SECRET=
# Django allowed hosts
ALLOWED_HOSTS=*
# Default log level
ROOT_LOG_LEVEL=WARNING
# Django log level
DJANGO_LOG_LEVEL=WARNING
# Allowed CORS origins
CORS_ALLOWED_ORIGINS=
########################
###### DATABASE ######
########################
# Database engine (sqlite3 or mysql)
DB_ENGINE=mysql
# Database root password
DB_ROOT_PASSWORD=.PeLPRootPassword123.
# Database name
DB_NAME=pelp
# Database user
DB_USER=pelp
# Database password
DB_PASSWORD=pelp
# Database host
DB_HOST=db
# Database port
DB_PORT=3306
#######################
###### STORAGE ######
#######################
# Your Amazon Web Services access key, as a string.
STORAGE_ACCESS_KEY=
# Your Amazon Web Services secret access key, as a string.
STORAGE_SECRET_KEY=
# Your Amazon Web Services storage bucket name, as a string.
STORAGE_BUCKET_NAME=pelp
# (optional: default is None) Name of the AWS S3 region to use (eg. eu-west-1)
STORAGE_REGION=eu-west-1
# Custom S3 URL to use when connecting to S3, including scheme. Overrides AWS_S3_REGION_NAME and AWS_S3_USE_SSL.
STORAGE_URL=
# Disable SSL verification
STORAGE_SSL_VERIFY=
# Get the public bucket name
STORAGE_PUBLIC_BUCKET_NAME=pelp-public
##########################
###### CANVAS API ######
##########################
# Canvas instance URL
CANVAS_API_URL=https://aula.uoc.edu
# Canvas API token
CANVAS_API_TOKEN=
#####################
###### REDIS ######
#####################
# Redis host
REDIS_HOST=redis
# Redis port
REDIS_PORT=3679
####################
###### SENTRY ######
####################
SENTRY_ENABLED=0
SENTRY_DSN=https://[email protected]/6
SENTRY_RELEASE=
SENTRY_SERVER_NAME=
SENTRY_ENVIRONMENT=
#######################
###### EXECUTION ######
#######################
# Internal path where executions are stored
EXECUTION_PATH=
# Host path where executions are stored
DOCKER_MOUNT_ROOT_PATH=
# The Docker host
DOCKER_HOST=
# Number of parallel runs
MAX_PARALLEL_RUNS=4
################
##### MAIL #####
################
# Output mail
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
# Inbox
IMAP_SERVER=
IMAP_USER=
IMAP_PASSWORD=
# Prometheus Gateway
PROMETHEUS_GW=prometheus-gw:9091