From 1cefa6ba2471189eb3c58874f4e7c7fcb1d38e08 Mon Sep 17 00:00:00 2001 From: barney <15270405776@163.com> Date: Thu, 22 Sep 2022 18:21:22 +0800 Subject: [PATCH] blog init --- .gitignore | 185 +++++++++++++++++++++++++++++++++ README.md | 1 + article/__init__.py | 0 article/admin.py | 3 + article/apps.py | 5 + article/migrations/__init__.py | 0 article/models.py | 3 + article/tests.py | 3 + article/views.py | 3 + db.sqlite3 | 0 drf_vue_blog/__init__.py | 0 drf_vue_blog/asgi.py | 16 +++ drf_vue_blog/settings.py | 122 ++++++++++++++++++++++ drf_vue_blog/urls.py | 21 ++++ drf_vue_blog/wsgi.py | 16 +++ manage.py | 22 ++++ requirements.txt | 14 +++ 17 files changed, 414 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 article/__init__.py create mode 100644 article/admin.py create mode 100644 article/apps.py create mode 100644 article/migrations/__init__.py create mode 100644 article/models.py create mode 100644 article/tests.py create mode 100644 article/views.py create mode 100644 db.sqlite3 create mode 100644 drf_vue_blog/__init__.py create mode 100644 drf_vue_blog/asgi.py create mode 100644 drf_vue_blog/settings.py create mode 100644 drf_vue_blog/urls.py create mode 100644 drf_vue_blog/wsgi.py create mode 100644 manage.py create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..783d77f --- /dev/null +++ b/.gitignore @@ -0,0 +1,185 @@ +### Python template + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# IPython Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# dotenv +.env + +# virtualenv +venv/ +ENV/ + +# Spyder project settings +.spyderproject + +# Rope project settings +.ropeproject +### VirtualEnv template +# Virtualenv +# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ +[Bb]in +[Ii]nclude +[Ll]ib +[Ll]ib64 +[Ll]ocal +[Ss]cripts +pyvenv.cfg +.venv +pip-selfcheck.json + +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +# idea folder, uncomment if you don't need it +.idea diff --git a/README.md b/README.md new file mode 100644 index 0000000..700fda9 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +### 基于django3和vue3的博客项目 diff --git a/article/__init__.py b/article/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/article/admin.py b/article/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/article/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/article/apps.py b/article/apps.py new file mode 100644 index 0000000..8295b57 --- /dev/null +++ b/article/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ArticleConfig(AppConfig): + name = 'article' diff --git a/article/migrations/__init__.py b/article/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/article/models.py b/article/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/article/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/article/tests.py b/article/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/article/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/article/views.py b/article/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/article/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..e69de29 diff --git a/drf_vue_blog/__init__.py b/drf_vue_blog/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/drf_vue_blog/asgi.py b/drf_vue_blog/asgi.py new file mode 100644 index 0000000..bcdc678 --- /dev/null +++ b/drf_vue_blog/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for drf_vue_blog 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.1/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'drf_vue_blog.settings') + +application = get_asgi_application() diff --git a/drf_vue_blog/settings.py b/drf_vue_blog/settings.py new file mode 100644 index 0000000..a27edad --- /dev/null +++ b/drf_vue_blog/settings.py @@ -0,0 +1,122 @@ +""" +Django settings for drf_vue_blog project. + +Generated by 'django-admin startproject' using Django 3.1.3. + +For more information on this file, see +https://docs.djangoproject.com/en/3.1/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.1/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.1/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'anzf7gliowvl)d!_fsrgn@3(xf4v#s%2a0ci$57rra7jkfu(17' + +# 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', + 'article', +] + +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 = 'drf_vue_blog.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 = 'drf_vue_blog.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.1/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.1/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.1/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.1/howto/static-files/ + +STATIC_URL = '/static/' diff --git a/drf_vue_blog/urls.py b/drf_vue_blog/urls.py new file mode 100644 index 0000000..1916893 --- /dev/null +++ b/drf_vue_blog/urls.py @@ -0,0 +1,21 @@ +"""drf_vue_blog URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.1/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 + +urlpatterns = [ + path('admin/', admin.site.urls), +] diff --git a/drf_vue_blog/wsgi.py b/drf_vue_blog/wsgi.py new file mode 100644 index 0000000..c874884 --- /dev/null +++ b/drf_vue_blog/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for drf_vue_blog 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.1/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'drf_vue_blog.settings') + +application = get_wsgi_application() diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..52db440 --- /dev/null +++ b/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'drf_vue_blog.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a0115d5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,14 @@ +asgiref==3.3.1 +Django==3.1.3 +django-filter==2.4.0 +djangorestframework==3.12.2 +djangorestframework-simplejwt==4.6.0 +Markdown==3.3.3 +packaging==20.4 +Pillow==8.0.1 +pip-review==1.1.0 +PyJWT==2.0.0 +pyparsing==2.4.7 +pytz==2020.4 +six==1.15.0 +sqlparse==0.4.1