Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myxogastria0808/streamlit-fastapi-img-system
https://github.com/myxogastria0808/streamlit-fastapi-img-system
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/myxogastria0808/streamlit-fastapi-img-system
- Owner: Myxogastria0808
- License: mit
- Created: 2024-02-20T18:38:59.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-07T09:59:29.000Z (10 months ago)
- Last Synced: 2024-03-07T11:06:20.529Z (10 months ago)
- Language: R
- Size: 178 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Streamlit と (FastAPI または plumber) を組み合わせて作成した何か
## 想定している OS の環境
#### Windows11
## 元から必要な package
### python
- poetry
### R
- renv
## 最初に一度だけすること
```batch
poetry install --no-root
```## Streamlit の実行
```batch
poetry shell
start-streamlit.cmd
```#### Streamlit を用いて作成した Web App を起動した際にアクセスする URL
```
http://127.0.0.1:9000/
```## FastAPI の実行
```batch
poetry shell
cd fastapi
start-fastapi.cmd
```#### FastAPI を用いて作成した Web API を起動した際にアクセスする URL (API ドキュメントにアクセスするときの URL)
```
http://127.0.0.1:7000/docs
```## plumber の実行
```batch
cd plumber
start-plumber.cmd
```#### FastAPI を用いて作成した Web API を起動した際にアクセスする URL (API ドキュメントにアクセスするときの URL)
```
http://127.0.0.1:8000/__docs__/
```