mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-13 00:52:21 +01:00
21 lines
346 B
Python
21 lines
346 B
Python
import os
|
|
|
|
from .base import *
|
|
|
|
SECRET_KEY = 'sae2hahHao1soo0Ocoz5Ieh1Ushae6feJe4mooliooj0Ula8'
|
|
|
|
DEBUG = True
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
|
|
}
|
|
}
|
|
|
|
BERTHA_HOST = ('localhost', 1234)
|
|
|
|
BASE_URL = 'http://localhost:8000'
|