Skip to content

MilaNLProc/wordify-webapp-streamlit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

title emoji colorFrom colorTo python_version sdk sdk_version app_file pinned
Wordify
🤗
blue
blue
3.11
streamlit
1.17.0
app.py
false

Run without docker

streamlit run app.py

Debug in Docker

# 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

# create image (if not already present)
make build

# run container and serve the app at localhost:4321
make run

# to stop container
make stop