Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joekakone/minimal-flask-api
Minimal API with Flask - Deploy on Heroku
https://github.com/joekakone/minimal-flask-api
flask heroku python webapp
Last synced: 3 days ago
JSON representation
Minimal API with Flask - Deploy on Heroku
- Host: GitHub
- URL: https://github.com/joekakone/minimal-flask-api
- Owner: joekakone
- Created: 2021-05-19T16:58:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-20T08:29:29.000Z (over 3 years ago)
- Last Synced: 2023-03-05T14:50:32.840Z (over 1 year ago)
- Topics: flask, heroku, python, webapp
- Language: HTML
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Minimal API with Flask
Hello, I'm Joseph Konka, Python enthousiast. In this porject, I'm building a Minimal API with Flask and Deploy it on Heroku. You can see the result [here](https://minimal-flask-api-jk.herokuapp.com)## Features
1. Build API with Flask
2. Deploy on Heroku## Setup environment
```sh
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
export FLASK_APP=app
```## Launch
```sh
python3 app.py
flask run --host=0.0.0.0 --port=5000
gunicorn app:app
```