-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.env
30 lines (26 loc) · 1000 Bytes
/
.travis.env
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
# Django project configuration for Travis CI
# It has a public secret key
# Rename this from .travis.env to .env when running with Travis CI
# Use this as a starting point for your private .env file. Do not forget to change SECRET_KEY to your own !
DEBUG=True
SECRET_KEY=ehV3{k&j)._[d2?'i8jm)kicyAAusOS6UI>LpHG8d\:@'3GK}F
ALLOWED_HOSTS=.localhost,127.0.0.1
DATABASE_URL=postgres://postgres:@localhost:5432/devteamhub
LOG_LEVEL=INFO
# Django Email configuration:
#EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
#EMAIL_HOST=
#EMAIL_PORT=
#EMAIL_HOST_USER=
#EMAIL_HOST_PASSWORD=
#EMAIL_USE_TLS=False
# Local logging:
#LOGS_DIR=logs
# Remote logging:
#SENTRY_DSN=your_sentry_DSN
# Django error reporting:
#ADMINS=admin name, [email protected], admin2 name, [email protected]
#MANAGERS=admin name, [email protected], admin2 admin, [email protected]
#EMAIL_ERROR_REPORT_PREFIX=[Dev Team Hub Debug]