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

https://github.com/kamaslau/trial-flask

Trial or micro-service unit of Python Flask framework.
https://github.com/kamaslau/trial-flask

flask python

Last synced: 2 months ago
JSON representation

Trial or micro-service unit of Python Flask framework.

Awesome Lists containing this project

README

          

# trial-flask

Trial or micro-service unit of Python [flask framework](https://flask.palletsprojects.com/).

# Start Up

```shell
# Prepare Python Environment
python3 -m venv venv
. venv/bin/activate

# Install flask
pip install Flask

# Run app.py
# If gateway file is not app.py, export file name (w/ file extension) to FLASK_APP, for example:
# export FLASK_APP=main
flask run
```