I recently moved my dev environment from Linux to Windows and I want to create a batch script that can launch my development environment.
So I created this script:
cd C:\Users\User1\Documents\projects\pims
.env\Scripts\activate.bat
pserve.exe Mydevelopment.ini --reload
This script kind of runs as expected however once the script launches the virtual environment, it doesn't launch pserve, I'm guessing that is doesn't run any of my script once it enters the virtual environment
Can anyone recommend a fix?