@echo off REM === Local dev launcher === REM USE_SQLITE=true -> use SQLite, skip MySQL requirement, relax prod-only checks REM DJANGO_DEBUG=true -> make Django's dev server auto-serve /static/ files so REM CSS/JS/images load without needing collectstatic (prod REM on Flatlogic keeps DEBUG=false; this only affects local) set USE_SQLITE=true set DJANGO_DEBUG=true python manage.py runserver 0.0.0.0:8000