| @echo off | |
| REM Activate the virtual environment | |
| call venv\Scripts\activate.bat | |
| REM Set environment variable to live | |
| set DEVELOPMENT=live | |
| REM Make and apply migrations | |
| python manage.py makemigrations | |
| python manage.py migrate | |
| REM Wait for user to press Enter | |
| set /p exitmsg=Press Enter to exit... | |
| exit |