Flask Code

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

pip3 install virtualenv

virtualenv env
.\env\Scripts\activate
py app.py

open http://127.0.0.1:5000/

.\env\Scripts\activate

to activate
.\env\Scripts\activate

in environment
pip3 install flask flask-sqlalchemy

to deploy
heroku login

pip3 install gunicorn


pip3 freeze >requirements.txt

git init
git add .
git commit -m "Init app"
git push

heroku create flaskcrudrover

to view
git remote -v

git push heroku master

to tell heroku what to do


touch Procfile

update
git init
git add .
git commit -m "Added battery"
git push heroku master

You might also like