File size: 279 Bytes
0da497e
 
 
ced18b6
0da497e
1d8dc03
 
 
0da497e
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off

REM Activate the virtual environment
call venv\Scripts\activate.bat

REM Set environment variable to live
set DEVELOPMENT=local

REM Make and apply migrations
python manage.py makemigrations

REM Wait for user to press Enter
set /p exitmsg=Press Enter to exit...

exit