inital commit

This commit is contained in:
2026-04-10 20:51:43 -05:00
parent cd1f2eae29
commit 562a8525d0
85 changed files with 4820 additions and 2 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "watertrek"
version = "0.1.0"
description = "WaterTrek Django backend service"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"django>=5.2.0",
"djangorestframework>=3.16.0",
"djangorestframework-simplejwt>=5.5.0",
"dj-database-url>=2.2.0",
"gunicorn>=23.0.0",
"psycopg[binary]>=3.2.0",
"pillow>=12.2.0",
"whitenoise>=6.9.0",
]