Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```