vue可视化报表平台后台代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
349 B

from .base import *
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
DEBUG = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'vislib',
'USER': 'root',
'PASSWORD': 'yasaka',
'HOST': 'localhost',
'PORT': '3306',
}
}
CRYPT_KEY = 'keyskeyskeyskeys'