Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ayushsubedi/tbc_2021_deploy_flask
simple flask app created for instructional purposes to demo deployment of a machine learning model to heroku
https://github.com/ayushsubedi/tbc_2021_deploy_flask
Last synced: about 2 months ago
JSON representation
simple flask app created for instructional purposes to demo deployment of a machine learning model to heroku
- Host: GitHub
- URL: https://github.com/ayushsubedi/tbc_2021_deploy_flask
- Owner: ayushsubedi
- Created: 2020-12-29T01:37:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-09T03:32:35.000Z (almost 4 years ago)
- Last Synced: 2024-05-05T19:34:55.133Z (8 months ago)
- Language: Python
- Homepage:
- Size: 564 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation (for windows machine)
#### Clone the repository
`https://github.com/ayushsubedi/TBC_2021_deploy_flask`
#### CD into the cloned directory and create a virtualenv
`python -m venv env`
### Enable virtualenv
`.\env\Scripts\activate`
### Install dependency packages from requirements.txt
`pip install -r requirements.txt`
### Run flask app
`$env:FLASK_APP="app.py"`
`flask run`