您现在的位置是:首页 >技术交流 >岗位分析与可视化系统(一)网站首页技术交流
岗位分析与可视化系统(一)
简介岗位分析与可视化系统(一)
一、配置Django
1.1在项目创建app应用
python manage.py startapp myapp[app名称]
1.2 setting设置
(1)数据库
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': "boss",
'USER': 'root',
'PASSWORD': 'xxxxx',
'HOST': 'localhost',
'PORT': 3306,
}
}
(2)static
#配置静态文件的设置
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')]
,
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。