forked from benhutchins/docker-taiga-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.py
22 lines (18 loc) · 787 Bytes
/
local.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Please modify this file as needed, see the local.py.example for details:
# https://github.com/taigaio/taiga-back/blob/master/settings/local.py.example
#
# Importing docker provides common settings, see:
# https://github.com/benhutchins/docker-taiga/blob/master/docker-settings.py
# https://github.com/taigaio/taiga-back/blob/master/settings/common.py
from .docker import *
PUBLIC_REGISTER_ENABLED = False
DEBUG = False
TEMPLATE_DEBUG = False
## Slack
# https://github.com/taigaio/taiga-contrib-slack
INSTALLED_APPS += ["taiga_contrib_slack"]
## LDAP
# see https://github.com/ensky/taiga-contrib-ldap-auth
# INSTALLED_APPS += ["taiga_contrib_ldap_auth"]
## For additional configuration options, look at:
# https://github.com/taigaio/taiga-back/blob/master/settings/local.py.example