added instructions for flask deploy

This commit is contained in:
navanchauhan 2022-05-22 11:51:43 -06:00
parent eeb5b2cf56
commit 483b22311c
1 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
# FlixRec
a content based movie recommendation system
a content based movie recommendation system
## Deploy Flask App
```
poetry shell # python3 -m venv my_env && source my_env/bin/activate
poetry install
waitress-serve --port=8041 app:app
```