Change-Id: If4e8a826d76819817e111cc7477a135f0c871db9
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
# sethtest
|
||||
|
||||
This repository was generated from the Backstage **Flask Web App** template.
|
||||
|
||||
## What you get
|
||||
|
||||
- `app.py` with `/` and `/health`
|
||||
- `requirements.txt`
|
||||
- Gunicorn production entrypoint
|
||||
- Dockerfile exposing port 8080
|
||||
- Backstage `catalog-info.yaml`
|
||||
|
||||
## Run locally
|
||||
|
||||
```bash
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
python app.py
|
||||
```
|
||||
|
||||
## Run with Docker
|
||||
|
||||
```bash
|
||||
docker build -t sethtest .
|
||||
docker run --rm -p 8080:8080 sethtest
|
||||
```
|
||||
Reference in New Issue
Block a user