https://github.com/lll-lll-lll-lll/azure-python-github-actions
github-actionsを使ってAzureFunctionにデプロイするワークフローを持つテンプレ
https://github.com/lll-lll-lll-lll/azure-python-github-actions
github-actions python
Last synced: about 1 month ago
JSON representation
github-actionsを使ってAzureFunctionにデプロイするワークフローを持つテンプレ
- Host: GitHub
- URL: https://github.com/lll-lll-lll-lll/azure-python-github-actions
- Owner: lll-lll-lll-lll
- Created: 2022-06-10T02:49:26.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-19T10:28:36.000Z (almost 3 years ago)
- Last Synced: 2025-02-03T02:30:58.395Z (3 months ago)
- Topics: github-actions, python
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 再現するには
やること
1. rootにrequirements.txtを用意
2. Azure Functionの初期化設定 [参考URL](https://qiita.com/Futo_Horio/items/dd36e0ed7d674f3f226f)(この時にrequirements.txtが用意される)
3. 仮想環境を構築
4. ```AZURE_FUNCTIONAPP_PUBLISH_PROFILE```をgithub のsecretに設定**仮想環境構築**
```sh
$ python3 -m venv .venv
$ . .venv/bin/activate
$ pip install -r requirements.txt
```