Spaces:
Build error
Build error
File size: 589 Bytes
733f751 0894b2b 0b4827c 733f751 c915bb5 733f751 569e2f4 0b4827c 569e2f4 0b4827c 569e2f4 0b4827c c915bb5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
---
title: Wordify
emoji: 🤗
colorFrom: blue
colorTo: blue
python_version: 3.7
sdk: streamlit
sdk_version: 1.17.0
app_file: app.py
pinned: false
---
# Run without docker
```bash
streamlit run app.py
```
# Debug in Docker
```bash
# create image (if not already present)
make build
# run container with an interactive shell
make dev
# (from within the contained) start the app normally
streamlit run app.py
```
# Run in Docker
```bash
# create image (if not already present)
make build
# run container and serve the app at localhost:4321
make run
# to stop container
make stop
```
|