streamlitを使用したアプリ公開方法をメモとして記載する。
vscodeでコードを書き終えたらterminalで以下のように記載。
PS C:\Users\sn112> cd 開きたいファイル名
PS C:\Users\sn112\Python\webapi> git init
Initialized empty Git repository in C:/Users/sn112/Python/webapi/.git/
githubでリポジトリ作成後のURLをorigin以降に記載 ※()は不要
PS C:\Users\sn112\Python\webapi> git remote add origin (ex:https://github.com/~)
git add .でwebapi内すべてをコミットの対象にする。
※git addと.の間にスペース必要
※git add ●●.pyでファイルを指定することも可能。
git commit -m 'コメント'でコミット
795b131がコミットID,コミットを識別する
PS C:\Users\sn112\Python\webapi> git add .
PS C:\Users\sn112\Python\webapi> git commit -m '1st commit'
[master (root-commit) 795b131] 1st commit
pushでローカルリポジトリの変更内容をリモートリポジトリに送信
PS C:\Users\sn112\Python\webapi> git push origin master
githubに移動して確認して問題なければ公開完了。