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.
- Host: GitHub
- URL: https://github.com/kamaslau/trial-flask
- Owner: kamaslau
- License: mit
- Created: 2022-06-07T04:50:17.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-10T07:12:01.000Z (about 4 years ago)
- Last Synced: 2025-06-09T14:07:00.808Z (about 1 year ago)
- Topics: flask, python
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```