Skip to content

Commit e30d715

Browse files
committed
feat: init backend-v2
1 parent c6d89e6 commit e30d715

File tree

10 files changed

+354
-0
lines changed

10 files changed

+354
-0
lines changed

backend-v2/.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
.Python
9+
.venv/
10+
11+
# Django-specific files
12+
*.log
13+
local_settings.py
14+
db.sqlite3
15+
16+
# Operating System and Editor files
17+
.DS_Store
18+
.vscode/
19+
.idea/
20+
*.swp
21+
*~
22+
.directory
23+
.project
24+
.settings/
25+
26+
# Environment variables
27+
.env

backend-v2/.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

backend-v2/config/__init__.py

Whitespace-only changes.

backend-v2/config/asgi.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
ASGI config for config project.
3+
4+
It exposes the ASGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/5.2/howto/deployment/asgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.asgi import get_asgi_application
13+
14+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
15+
16+
application = get_asgi_application()

backend-v2/config/settings.py

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
"""
2+
Django settings for config project.
3+
4+
Generated by 'django-admin startproject' using Django 5.2.6.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/5.2/topics/settings/
8+
9+
For the full list of settings and their values, see
10+
https://docs.djangoproject.com/en/5.2/ref/settings/
11+
"""
12+
13+
from pathlib import Path
14+
15+
# Build paths inside the project like this: BASE_DIR / 'subdir'.
16+
BASE_DIR = Path(__file__).resolve().parent.parent
17+
18+
19+
# Quick-start development settings - unsuitable for production
20+
# See https://docs.djangoproject.com/en/5.2/howto/deployment/checklist/
21+
22+
# SECURITY WARNING: keep the secret key used in production secret!
23+
SECRET_KEY = "django-insecure-%%39)mmx&9x)r@8*7!!&7ueyz1(e-q@(xmnu%9jll%et46j58q"
24+
25+
# SECURITY WARNING: don't run with debug turned on in production!
26+
DEBUG = True
27+
28+
ALLOWED_HOSTS = []
29+
30+
31+
# Application definition
32+
33+
INSTALLED_APPS = [
34+
"django.contrib.admin",
35+
"django.contrib.auth",
36+
"django.contrib.contenttypes",
37+
"django.contrib.sessions",
38+
"django.contrib.messages",
39+
"django.contrib.staticfiles",
40+
]
41+
42+
MIDDLEWARE = [
43+
"django.middleware.security.SecurityMiddleware",
44+
"django.contrib.sessions.middleware.SessionMiddleware",
45+
"django.middleware.common.CommonMiddleware",
46+
"django.middleware.csrf.CsrfViewMiddleware",
47+
"django.contrib.auth.middleware.AuthenticationMiddleware",
48+
"django.contrib.messages.middleware.MessageMiddleware",
49+
"django.middleware.clickjacking.XFrameOptionsMiddleware",
50+
]
51+
52+
ROOT_URLCONF = "config.urls"
53+
54+
TEMPLATES = [
55+
{
56+
"BACKEND": "django.template.backends.django.DjangoTemplates",
57+
"DIRS": [],
58+
"APP_DIRS": True,
59+
"OPTIONS": {
60+
"context_processors": [
61+
"django.template.context_processors.request",
62+
"django.contrib.auth.context_processors.auth",
63+
"django.contrib.messages.context_processors.messages",
64+
],
65+
},
66+
},
67+
]
68+
69+
WSGI_APPLICATION = "config.wsgi.application"
70+
71+
72+
# Database
73+
# https://docs.djangoproject.com/en/5.2/ref/settings/#databases
74+
75+
DATABASES = {
76+
"default": {
77+
"ENGINE": "django.db.backends.sqlite3",
78+
"NAME": BASE_DIR / "db.sqlite3",
79+
}
80+
}
81+
82+
83+
# Password validation
84+
# https://docs.djangoproject.com/en/5.2/ref/settings/#auth-password-validators
85+
86+
AUTH_PASSWORD_VALIDATORS = [
87+
{
88+
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
89+
},
90+
{
91+
"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",
92+
},
93+
{
94+
"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator",
95+
},
96+
{
97+
"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator",
98+
},
99+
]
100+
101+
102+
# Internationalization
103+
# https://docs.djangoproject.com/en/5.2/topics/i18n/
104+
105+
LANGUAGE_CODE = "en-us"
106+
107+
TIME_ZONE = "UTC"
108+
109+
USE_I18N = True
110+
111+
USE_TZ = True
112+
113+
114+
# Static files (CSS, JavaScript, Images)
115+
# https://docs.djangoproject.com/en/5.2/howto/static-files/
116+
117+
STATIC_URL = "static/"
118+
119+
# Default primary key field type
120+
# https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field
121+
122+
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"

backend-v2/config/urls.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"""
2+
URL configuration for config project.
3+
4+
The `urlpatterns` list routes URLs to views. For more information please see:
5+
https://docs.djangoproject.com/en/5.2/topics/http/urls/
6+
Examples:
7+
Function views
8+
1. Add an import: from my_app import views
9+
2. Add a URL to urlpatterns: path('', views.home, name='home')
10+
Class-based views
11+
1. Add an import: from other_app.views import Home
12+
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
13+
Including another URLconf
14+
1. Import the include() function: from django.urls import include, path
15+
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
16+
"""
17+
18+
from django.contrib import admin
19+
from django.urls import path
20+
21+
urlpatterns = [
22+
path("admin/", admin.site.urls),
23+
]

backend-v2/config/wsgi.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
WSGI config for config project.
3+
4+
It exposes the WSGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.wsgi import get_wsgi_application
13+
14+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
15+
16+
application = get_wsgi_application()

backend-v2/manage.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env python
2+
"""Django's command-line utility for administrative tasks."""
3+
import os
4+
import sys
5+
6+
7+
def main():
8+
"""Run administrative tasks."""
9+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
10+
try:
11+
from django.core.management import execute_from_command_line
12+
except ImportError as exc:
13+
raise ImportError(
14+
"Couldn't import Django. Are you sure it's installed and "
15+
"available on your PYTHONPATH environment variable? Did you "
16+
"forget to activate a virtual environment?"
17+
) from exc
18+
execute_from_command_line(sys.argv)
19+
20+
21+
if __name__ == "__main__":
22+
main()

backend-v2/pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[project]
2+
name = "backend-v2"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
requires-python = ">=3.13"
6+
dependencies = [
7+
"django>=5.2.6",
8+
]
9+
10+
[dependency-groups]
11+
dev = [
12+
"django-stubs>=5.2.2",
13+
]
14+
15+
[tool.pyright]
16+
reportAny = "none"
17+
reportUnusedCallResult = "none"
18+
reportUnknownVariableType = "none"

backend-v2/uv.lock

Lines changed: 109 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)