-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.dev
60 lines (49 loc) · 1.57 KB
/
.env.dev
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
DEBUG=1
IMAGE_PATH=/tmp/images
IMAGE_CACHE_PATH=/tmp/images
# Variables for Postgres container
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=manga
# Variables for RabbitMQ container
RABBITMQ_DEFAULT_USER=manga
RABBITMQ_DEFAULT_PASS=adminadmin
# ---- Backend Django Container -----
# Run this python comand to generate a secret key.
# docker-compose run backend python -c "import secrets; print(secrets.token_urlsafe())"
SECRET_KEY=1lDpkJuqY31AgLOg-udvP8NTFO1jFFlkHkZyfF__ass
DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
HOST_URL=//localhost
# Database
SQL_ENGINE=django.db.backends.postgresql
SQL_DATABASE=manga
SQL_USER=postgres
SQL_PASSWORD=postgres
SQL_HOST=database
SQL_PORT=5432
# LDAP Authentication
AUTH_LDAP_ENABLED=False
AUTH_LDAP_SERVER_URI=ldap://HOST:PORT
AUTH_LDAP_BIND_PASSWORD=root
AUTH_LDAP_BIND_DN=uid=auth,ou=people,dc=org
AUTH_LDAP_USER_SEARCH_DN=ou=people,dc=org
AUTH_LDAP_GROUP_SEARCH_DN=ou=groups,dc=org
AUTH_LDAP_REQUIRE_GROUP=cn=group,ou=groups,dc=org
# Email Configs
EMAIL_HOST=
EMAIL_PORT=
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
EMAIL_USE_TLS=
EMAIL_NOTIFICATION=
EMAIL_HELPDESK=
EMAIL_HELPDESK_CONTACT=
# Activity Statistics Configs
# Enables or disables sending daily email access statistics
SEND_DAILY_STATISTICS_EMAIL=False
# Email that will receive the notifications and reports
# Celery Configs
CELERY_BROKER=amqp://manga:adminadmin@rabbit:5672
# Necessário para executar o programa fit_scrutinizer que utiliza interface grafica tkinter
DISPLAY=:0