HimoolERP/configs/django.py

19 lines
363 B
Python
Raw Normal View History

2021-11-04 23:09:35 +08:00
from pathlib import Path
2021-12-13 02:14:00 +08:00
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
2021-11-04 23:09:35 +08:00
BASE_DIR = Path(__file__).resolve().parent.parent
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}