diff --git a/trydjango/trydjango/__init__.py b/trydjango/trydjango/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/trydjango/trydjango/__pycache__/__init__.cpython-312.pyc b/trydjango/trydjango/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000..4c97a5bebc Binary files /dev/null and b/trydjango/trydjango/__pycache__/__init__.cpython-312.pyc differ diff --git a/trydjango/trydjango/__pycache__/settings.cpython-312.pyc b/trydjango/trydjango/__pycache__/settings.cpython-312.pyc new file mode 100644 index 0000000000..b3dae5c393 Binary files /dev/null and b/trydjango/trydjango/__pycache__/settings.cpython-312.pyc differ diff --git a/trydjango/trydjango/__pycache__/urls.cpython-312.pyc b/trydjango/trydjango/__pycache__/urls.cpython-312.pyc new file mode 100644 index 0000000000..c5f59f2056 Binary files /dev/null and b/trydjango/trydjango/__pycache__/urls.cpython-312.pyc differ diff --git a/trydjango/trydjango/__pycache__/wsgi.cpython-312.pyc b/trydjango/trydjango/__pycache__/wsgi.cpython-312.pyc new file mode 100644 index 0000000000..f2e169c45a Binary files /dev/null and b/trydjango/trydjango/__pycache__/wsgi.cpython-312.pyc differ diff --git a/trydjango/trydjango/asgi.py b/trydjango/trydjango/asgi.py new file mode 100644 index 0000000000..cc0b9cb5ba --- /dev/null +++ b/trydjango/trydjango/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for trydjango 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/5.2/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "trydjango.settings") + +application = get_asgi_application() diff --git a/trydjango/trydjango/settings.py b/trydjango/trydjango/settings.py new file mode 100644 index 0000000000..9ae25cd8a9 --- /dev/null +++ b/trydjango/trydjango/settings.py @@ -0,0 +1,131 @@ +""" +Django settings for trydjango project. + +Generated by 'django-admin startproject' using Django 5.2.7. + +For more information on this file, see +https://docs.djangoproject.com/en/5.2/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/5.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/5.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = "django-insecure-xn(k&b+pt+71ybphf7u%n#gydwp9fsopkzg%))3x8n@6gaqal9" + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = ["*"] +CSRF_TRUSTED_ORIGINS = [ + 'http://mysterious-seance-5jjjwp5q5xjf4pxg-8000.app.github.dev', + 'https://mysterious-seance-5jjjwp5q5xjf4pxg-8000.app.github.dev', + 'https://localhost:8000' +] + + + +# Application definition + +INSTALLED_APPS = [ + "django.contrib.admin", + "django.contrib.auth", + "django.contrib.contenttypes", + "django.contrib.sessions", + "django.contrib.messages", + "django.contrib.staticfiles", + + "basic", + "pages", +] + +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 = "trydjango.urls" + +TEMPLATES = [ + { + "BACKEND": "django.template.backends.django.DjangoTemplates", + "DIRS": [], + "APP_DIRS": True, + "OPTIONS": { + "context_processors": [ + "django.template.context_processors.request", + "django.contrib.auth.context_processors.auth", + "django.contrib.messages.context_processors.messages", + ], + }, + }, +] + +WSGI_APPLICATION = "trydjango.wsgi.application" + + +# Database +# https://docs.djangoproject.com/en/5.2/ref/settings/#databases + +DATABASES = { + "default": { + "ENGINE": "django.db.backends.sqlite3", + "NAME": BASE_DIR / "db.sqlite3", + } +} + + +# Password validation +# https://docs.djangoproject.com/en/5.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/5.2/topics/i18n/ + +LANGUAGE_CODE = "en-us" + +TIME_ZONE = "UTC" + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/5.2/howto/static-files/ + +STATIC_URL = "static/" + +# Default primary key field type +# https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" diff --git a/trydjango/trydjango/urls.py b/trydjango/trydjango/urls.py new file mode 100644 index 0000000000..54c29cb545 --- /dev/null +++ b/trydjango/trydjango/urls.py @@ -0,0 +1,25 @@ +""" +URL configuration for trydjango project. + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/5.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 +from pages.views import home_view + +urlpatterns = [ + path("admin/", admin.site.urls), + path("", home_view, name="home"), +] diff --git a/trydjango/trydjango/wsgi.py b/trydjango/trydjango/wsgi.py new file mode 100644 index 0000000000..0a3f69751b --- /dev/null +++ b/trydjango/trydjango/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for trydjango 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/5.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "trydjango.settings") + +application = get_wsgi_application()