forked from sclorg/django-ex
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.env.example
52 lines (39 loc) · 1.49 KB
/
.env.example
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
################################################################
# These settings need to be completed every time you set up a
# dev environment
################################################################
# Set this to your own 30-50 character string with no spaces or
# punctuation.
DJANGO_SECRET_KEY=0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ9876543210
################################################################
# These values cannot be entered on Github, and must be obtained
# from a member of the eDivorce team or a keycloak realm admin
################################################################
EFILING_HUB_KEYCLOAK_SECRET=
EDIVORCE_KEYCLOAK_SECRET=
################################################################
# You probably won't have to change any settings below this line
################################################################
# Django settings
DEBUG=True
TEMPLATE_DEBUG=True
DATABASE_ENGINE=django.db.backends.sqlite3
DATABASE_NAME=db.sqlite3
# ClamAV settings
CLAMAV_HOST=localhost
CLAMAV_PORT=3310
CLAMAV_ENABLED=True
# Redis settings
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=admin
# Keycloak settings
EDIVORCE_KEYCLOAK_BASE_URL=https://dev.loginproxy.gov.bc.ca
EDIVORCE_KEYCLOAK_REALM=court-services-jag
# Weasyprint settings
WEASYPRINT_URL=http://localhost:5005
# eFiling Hub settings
EFILING_HUB_KEYCLOAK_BASE_URL=https://dev.loginproxy.gov.bc.ca
EFILING_HUB_KEYCLOAK_REALM=court-services-jag
EFILING_HUB_KEYCLOAK_CLIENT_ID=e-divorce
EFILING_HUB_ENABLED=True