- Implement Pydantic Settings for strict, type-safe configuration - Centralize environment variables in project root .env - Modernize project boilerplate (README, .gitignore, .editorconfig) - Add automated secret key generation and secure CORS defaults - Remove legacy absolute path hardcoding and string-based settings
24 lines
458 B
TOML
24 lines
458 B
TOML
[project]
|
|
name = "django-tutorials"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"django>=6.0,<7.0",
|
|
"django-cors-headers>=4.5.0",
|
|
"django-ninja>=1.1.0",
|
|
"Jinja2>=3.1.5",
|
|
"MarkupSafe>=2.1.5",
|
|
"pydantic-settings>=2.2.1",
|
|
"sqlparse>=0.5.1",
|
|
"tzdata>=2025.3",
|
|
]
|
|
|
|
[tool.uv]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"django-upgrade>=1.29.1",
|
|
"django-debug-toolbar>=4.4.6",
|
|
]
|