【簡単爆速第2弾】Streamlitをherokuにデプロイ
前回までのあらすじ
PythonのオープンソースフレームワークであるStreamlitを使って、爆速でwebアプリを作りました。
今回の流れ
Streamlitで作ったwebアプリのディレクトリに必要なファイルを追加して、herokuにデブロイしていこうと思います。
必要なものは
- requrements.txt
- setup.sh
- Procfile
- runtime.txt
requrements.txt
サーバーがコードを実行するためには、何をダウンロードするか必要があるかを認識させるものです。
streamlit
や必要に応じてnumpy
やpandas
を入れてあげましょう。
下は一例です。
streamlit==0.60.0
matplotlib==2.2.3
numpy==1.15.1
App not compatible with buildpack
エラー出る
requirement.txt
runtime.txt作る
Procfile
setup.sh
setup.sh
もrequirements.txt
と同様にアプリがサーバー上で動作する環境を作るものです。emailは各々で変更してください。
mkdir -p ~/.streamlit/
echo "\
[general]\n\
email = \"[email protected]\"\n\
" > ~/.streamlit/credentials.toml
echo "\
[server]\n\
headless = true\n\
enableCORS=false\n\
port = $PORT\n\
" > ~/.streamlit/config.toml
Procfile
サーバーがどういったコマンドで実行すればいいかを記述するものです。
web: sh setup.sh && streamlit run {name_of_app}.py
デプロイしていく
まずはログイン
$ heroku login
herokuはGitを使用してるので、いつもGitレポジトリの初期化を行います。
$ git init
$ git add .
$ git commit -m "first commit"
そしてherokuに新しいインスタンスを作成します。
$ heroku create
あとはpushして開くだけです。
$ git push heroku master
$ heroku open
私も試しにTSPを2-opt法で解けるアプリケーションをデプロイしました。
最後に
Pythonだけで気軽に成果物をそれっぽい形にできるStreamlitを、今回はデプロイしてみました。
デプロイまで非常に爆速でしたね。
Streamlit自体の便利さや爆速加減を知りたい方は、ぜひ前回の記事をご覧ください!!
Author And Source
この問題について(【簡単爆速第2弾】Streamlitをherokuにデプロイ), 我々は、より多くの情報をここで見つけました https://qiita.com/Nate0928/items/632e7d54c2f9c17e242b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .