Browse Source

删除 'yicanyishi'

master
李思涵 3 years ago
parent
commit
a6cdb39bd3
12 changed files with 0 additions and 207 deletions
  1. +0
    -0
      yicanyishi/.keep
  2. +0
    -2
      yicanyishi/__init__.py
  3. +0
    -0
      yicanyishi/_pycache_/.keep
  4. BIN
      yicanyishi/_pycache_/__init__.cpython-38.pyc
  5. BIN
      yicanyishi/_pycache_/settings.cpython-38.pyc
  6. BIN
      yicanyishi/_pycache_/urls.cpython-38.pyc
  7. BIN
      yicanyishi/_pycache_/wsgi.cpython-38.pyc
  8. +0
    -16
      yicanyishi/asgi.py
  9. +0
    -135
      yicanyishi/settings.py
  10. +0
    -28
      yicanyishi/urls.py
  11. +0
    -10
      yicanyishi/views.py
  12. +0
    -16
      yicanyishi/wsgi.py

+ 0
- 0
yicanyishi/.keep View File


+ 0
- 2
yicanyishi/__init__.py View File

@ -1,2 +0,0 @@
import pymysql
pymysql.install_as_MySQLdb()

+ 0
- 0
yicanyishi/_pycache_/.keep View File


BIN
yicanyishi/_pycache_/__init__.cpython-38.pyc View File


BIN
yicanyishi/_pycache_/settings.cpython-38.pyc View File


BIN
yicanyishi/_pycache_/urls.cpython-38.pyc View File


BIN
yicanyishi/_pycache_/wsgi.cpython-38.pyc View File


+ 0
- 16
yicanyishi/asgi.py View File

@ -1,16 +0,0 @@
"""
ASGI config for yicanyishi project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'yicanyishi.settings')
application = get_asgi_application()

+ 0
- 135
yicanyishi/settings.py View File

@ -1,135 +0,0 @@
"""
Django settings for yicanyishi project.
Generated by 'django-admin startproject' using Django 3.2.5.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
"""
from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = ''#!保密内容
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = [ '' ]#!保密内容
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'menu',
'general',
'fridge',
'algorithm'
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
# 'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'yicanyishi.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [BASE_DIR / 'templates']
,
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'yicanyishi.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': '',#!保密内容
'USER': '',#!保密内容
'HOST': '',#!保密内容
'PORT': '',#!保密内容
'PASSWORD': '',#!保密内容
'OPTIONS': {'charset': 'utf8mb4'},
}
}
# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/
LANGUAGE_CODE = 'zh-hans'
TIME_ZONE = 'Asia/Shanghai'
USE_I18N = True
USE_L10N = True
USE_TZ = False
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL = '/static/'
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

+ 0
- 28
yicanyishi/urls.py View File

@ -1,28 +0,0 @@
"""yicanyishi URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.2/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from . import views
urlpatterns = [
path('admin/', admin.site.urls),
path('general/', include('general.urls')),
path('menu/', include('menu.urls')),
path('fridge/', include('fridge.urls')),
path('algorithm/', include('algorithm.urls')),
path('test_if_global', views.test_if_global)
]

+ 0
- 10
yicanyishi/views.py View File

@ -1,10 +0,0 @@
from django.http import HttpResponse, JsonResponse
test_num = 1
def test_if_global(request):
global test_num
test_num += 1
return HttpResponse("测试结果为" + str(test_num))

+ 0
- 16
yicanyishi/wsgi.py View File

@ -1,16 +0,0 @@
"""
WSGI config for yicanyishi project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'yicanyishi.settings')
application = get_wsgi_application()

Loading…
Cancel
Save