Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions django/{{ cookiecutter.project_slug }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ description = ""
readme = "README.md"
requires-python = ">={{ cookiecutter.python_version }}"
dependencies = [
"django>=5.2.5",
"django-admin-interface>=0.30.1",
"django-debug-toolbar>=5.2.0",
"django>=6.0.7",
"django-admin-interface>=0.32.0",
"django-debug-toolbar>=7.0.0",
{% if cookiecutter.use_drf == "y" %}
"django-filter>=25.1",
"djangorestframework>=3.16.1",
"django-cors-headers>=4.7.0",
"drf-spectacular>=0.28.0",
"django-filter>=25.2",
"djangorestframework>=3.17.1",
"django-cors-headers>=4.9.0",
"drf-spectacular>=0.29.0",
{% endif %}
"django-environ>=0.12.0",
"django-environ>=0.14.0",
"django-extensions>=4.1",
"psycopg[binary]>=3.2.9",
"whitenoise>=6.9.0",
"psycopg[binary]>=3.3.4",
"whitenoise>=6.12.0",
]

[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"pre-commit>=4.6.0",
]
production = [
"gunicorn>=23.0.0",
"gunicorn>=26.0.0",
]
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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/
https://docs.djangoproject.com/en/6.0/howto/deployment/asgi/
"""

import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
"""
Django settings for {{ cookiecutter.project_slug }} project.

Generated by 'django-admin startproject' using Django 5.2.3.

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/
"""

import sys
Expand Down Expand Up @@ -100,7 +92,7 @@


# Password validation
# https://docs.djangoproject.com/en/5.2/ref/settings/#auth-password-validators
# https://docs.djangoproject.com/en/6.0/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
{
Expand All @@ -119,7 +111,7 @@


# Internationalization
# https://docs.djangoproject.com/en/5.2/topics/i18n/
# https://docs.djangoproject.com/en/6.0/topics/i18n/

LANGUAGE_CODE = "en-us"

Expand All @@ -131,7 +123,7 @@


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/5.2/howto/static-files/
# https://docs.djangoproject.com/en/6.0/howto/static-files/

STATIC_URL = "static/"
STATIC_ROOT = BASE_DIR / "static"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
URL configuration for {{ cookiecutter.project_slug }} project.

The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/5.2/topics/http/urls/
https://docs.djangoproject.com/en/6.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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/
https://docs.djangoproject.com/en/6.0/howto/deployment/wsgi/
"""

import os
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
description = "Cookiecutters for python projects @singularIT"
requires-python = ">=3.12"
dependencies = [
"cookiecutter>=2.6.0",
"pre-commit>=4.2.0",
"cookiecutter>=2.7.1",
"pre-commit>=4.6.0",
]

[dependency-groups]
Expand Down
399 changes: 242 additions & 157 deletions uv.lock

Large diffs are not rendered by default.

Loading