mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-10 17:05:03 +08:00
27 lines
483 B
Python
27 lines
483 B
Python
from pathlib import Path
|
|
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
|
|
DEBUG = True
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
|
|
|
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': BASE_DIR / 'db.sqlite3',
|
|
}
|
|
}
|
|
|
|
|
|
# Tencent 短信接口
|
|
SECRET_ID = ''
|
|
SECRET_KEY = ''
|
|
SMS_SDK_APP_ID = ''
|
|
TEMPLATE_ID = ''
|
|
SIGN_NAME = ''
|
|
REGION = ''
|