Open yuyuyuriko78 opened 4 years ago
pip install gunicorn
touch Procfile
→作成web: gunicorn app:app
だけでOKpip freeze > requirements.txt
→作成
使用しているライブラリが自動で記述されている
例
Flask==1.1.2
folium==0.11.0
Jinja2==2.10.3
gunicorn==20.0.4
Werkzeug==0.16.0
pandas==0.25.1
requests==2.22.0
numpy==1.16.5
matplotlib==3.1.1
seaborn==0.9.0
git config --global user.email "test@gmail.com"
git config --global user.name "test"
git init
git add .
git commit -m "first commit"
heroku login
ブラウザが開くのでログインするheroku create アプリ名
git push heroku master
heroku open
herokuとは