-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 884 Bytes
/
Copy path.env.example
File metadata and controls
24 lines (20 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# WARNING: Do not use this .env file in production
# == Secret key ==
# Secret key for Django
# You can generate a new one by running: `make secretkey`
# WARNING: Do not use weak secret keys in production
RT_SECRET_KEY='SECRET_KEY'
# == Allowed hosts ==
# Allowed hosts for Django
# Fill this with the hosts that you want to allow
RT_ALLOWED_HOSTS=['localhost', '127.0.0.1']
# == Push Notifications ==
# You can configure webpush settings like this
RT_WEBPUSH_SETTINGS={'VAPID_PUBLIC_KEY': 'VAPID_PUBLIC_KEY','VAPID_PRIVATE_KEY': 'VAPID_PRIVATE_KEY','VAPID_ADMIN_EMAIL': 'VAPID_ADMIN_EMAIL',}
# == Database ==
# Database settings for Django
# Fill this with your database settings
RT_DATABASES={'default': {'ENGINE': 'django.db.backends.sqlite3','NAME': 'db.sqlite3',}}
# by default it uses postgresql in docker
# so the default value is:
RT_DATABASES={'default': {'HOST': 'db'}}