First commit

This commit is contained in:
2026-02-19 17:55:33 +03:30
commit f6ac30aa34
16 changed files with 616 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Django
SECRET_KEY=your-secret-key-change-in-production
DEBUG=1
ALLOWED_HOSTS=localhost,127.0.0.1,0.0.0.0
# Database (MySQL) - used by Django in Docker
DB_ENGINE=django.db.backends.mysql
DB_NAME=croplogic
DB_USER=croplogic
DB_PASSWORD=changeme
DB_HOST=db
DB_PORT=3306
# Optional: for running manage.py from host (local DB)
# DB_HOST=127.0.0.1