Launch taiga-docker

This commit is contained in:
Yamila Moreno 2020-09-30 10:11:20 +02:00
parent 4c788f6302
commit 6c88d2e925
6 changed files with 0 additions and 52 deletions

View File

@ -1,52 +0,0 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2017 Andrey Antukh <niwi@niwi.nz>
# Copyright (C) 2014-2017 Jesús Espino <jespinog@gmail.com>
# Copyright (C) 2014-2017 David Barragán <bameda@dbarragan.com>
# Copyright (C) 2014-2017 Alejandro Alonso <alejandro.alonso@kaleidos.net>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from .common import *
# Check all the available settings in:
# https://github.com/taigaio/taiga-back/blob/master/settings/common.py
#########################################
## GENERIC
#########################################
DEBUG = False
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'taiga',
'USER': 'taiga',
'PASSWORD': 'taiga',
'HOST': 'taiga-db',
'PORT': '5432',
}
}
MEDIA_URL = "http://localhost:9000/media/"
STATIC_URL = "http://localhost:9000/static/"
SITES["api"] = {
"domain": "localhost:9000", "scheme": "http", "name": "api"
}
#########################################
## CONTRIBS
#########################################
INSTALLED_APPS += [
"taiga_contrib_slack"
]