Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

biancarosa/flask-app

Folders and files

NameName
Last commit message
Last commit date
Feb 14, 2022
Jul 15, 2019
Nov 26, 2020
Jul 13, 2019
Feb 14, 2022
May 24, 2018
May 25, 2018
May 24, 2018
Nov 26, 2020
Mar 17, 2018
Feb 14, 2022
Feb 14, 2022
Feb 14, 2022
Jul 14, 2019
Jul 13, 2019
Dec 5, 2017
Jun 9, 2019

Repository files navigation

flask-app

This is a example flask app that can be used as a template repository for new flask apps.

The application relies on the app folder, being the main.py its entrypoint.

It aims to use the latest version of Python, Flask and Gunicorn. Feel free to make a pull request if it's not.

Running the app

Docker

Docker and Docker Compose make things easy!

docker-compose up
# or if you want to run detached
docker-compose up -d

Natively

There is a comprehensive Makefile in the project that can be used.

# install dependencies
make
# runs the app
make run