This is a template repository with the essentials to build a Python project using Flask.
We recommend the use of our Taskfile
You can check the Contributing
python app.py
If you want to modify your configuration it's best to create a .env
file. These are the possible values you can change:
PORT='5000'
DOMAIN='localhost'
AWS_KEY_ID = 'whatever'
AWS_KEY_ID_SECRET = 'key'
To build the docker image run the following command on the root folder
docker build . -f docker/Dockerfile -t <name-for-container>
We suggest the use of Mkdocs for documentation.
pip install mkdocs
mkdocs serve
This project has a set of hooks for pre-commit for formatting.
To install this hooks into your repo, run.
pre-commit install