Skip to content

Instantly share code, notes, and snippets.

@jimfilippou
Last active June 8, 2020 17:49
Show Gist options
  • Save jimfilippou/fd65b50279133766be7d66d0244e2ca5 to your computer and use it in GitHub Desktop.
Save jimfilippou/fd65b50279133766be7d66d0244e2ca5 to your computer and use it in GitHub Desktop.
A list of useful and time saving batch files for rapid Flask application development.
@echo off
cd %USERPROFILE%/Desktop/Projects/Bandicoot 2/env/Scripts
call activate.bat
cd %USERPROFILE%/Desktop/Projects/Bandicoot 2
IF "%1"=="public" GOTO PUBLIC
python manage.py runserver
:PUBLIC:
python manage.py runserver --host 0.0.0.0
@echo off
ngrok http 5000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment