From de2a5a426e41514b9281ee3250d19560f92e632a Mon Sep 17 00:00:00 2001 From: first_user Date: Sat, 8 Feb 2020 01:28:39 +0900 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=9B=9E=E3=82=B3=E3=83=9F=E3=83=83?= =?UTF-8?q?=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 + .vscode/settings.json | 3 + manage.py | 21 ++++++ requirements.txt | 5 ++ sample_app/__init__.py | 0 sample_app/admin.py | 3 + sample_app/apps.py | 5 ++ sample_app/migrations/__init__.py | 0 sample_app/models.py | 3 + sample_app/tests.py | 3 + sample_app/views.py | 3 + sample_site/__init__.py | 0 sample_site/asgi.py | 16 ++++ sample_site/settings.py | 120 ++++++++++++++++++++++++++++++ sample_site/urls.py | 21 ++++++ sample_site/wsgi.py | 16 ++++ 16 files changed, 222 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100755 manage.py create mode 100644 requirements.txt create mode 100644 sample_app/__init__.py create mode 100644 sample_app/admin.py create mode 100644 sample_app/apps.py create mode 100644 sample_app/migrations/__init__.py create mode 100644 sample_app/models.py create mode 100644 sample_app/tests.py create mode 100644 sample_app/views.py create mode 100644 sample_site/__init__.py create mode 100644 sample_site/asgi.py create mode 100644 sample_site/settings.py create mode 100644 sample_site/urls.py create mode 100644 sample_site/wsgi.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c477410 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +env/ +db.sqlite3 +*.pyc \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6bd93e6 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": "env/bin/python" +} \ No newline at end of file diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..4d28a05 --- /dev/null +++ b/manage.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'sample_site.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..313a34d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +asgiref==3.2.3 +Django==3.0.3 +pkg-resources==0.0.0 +pytz==2019.3 +sqlparse==0.3.0 diff --git a/sample_app/__init__.py b/sample_app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sample_app/admin.py b/sample_app/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/sample_app/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/sample_app/apps.py b/sample_app/apps.py new file mode 100644 index 0000000..05a77f5 --- /dev/null +++ b/sample_app/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class SampleAppConfig(AppConfig): + name = 'sample_app' diff --git a/sample_app/migrations/__init__.py b/sample_app/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sample_app/models.py b/sample_app/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/sample_app/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/sample_app/tests.py b/sample_app/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/sample_app/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/sample_app/views.py b/sample_app/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/sample_app/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/sample_site/__init__.py b/sample_site/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sample_site/asgi.py b/sample_site/asgi.py new file mode 100644 index 0000000..fce2393 --- /dev/null +++ b/sample_site/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for sample_site 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.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'sample_site.settings') + +application = get_asgi_application() diff --git a/sample_site/settings.py b/sample_site/settings.py new file mode 100644 index 0000000..f913827 --- /dev/null +++ b/sample_site/settings.py @@ -0,0 +1,120 @@ +""" +Django settings for sample_site project. + +Generated by 'django-admin startproject' using Django 3.0.3. + +For more information on this file, see +https://docs.djangoproject.com/en/3.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.0/ref/settings/ +""" + +import os + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'gfrwnio78zchwnxps#3$#i%^nhesopmrjayje%m9_*53v5^$0%' + +# 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', +] + +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 = 'sample_site.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + '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 = 'sample_site.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.0/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.0/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.0/howto/static-files/ + +STATIC_URL = '/static/' diff --git a/sample_site/urls.py b/sample_site/urls.py new file mode 100644 index 0000000..9ef82e5 --- /dev/null +++ b/sample_site/urls.py @@ -0,0 +1,21 @@ +"""sample_site URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.0/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/sample_site/wsgi.py b/sample_site/wsgi.py new file mode 100644 index 0000000..6da6132 --- /dev/null +++ b/sample_site/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for sample_site 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.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'sample_site.settings') + +application = get_wsgi_application()