Home

Awesome

cookiecutter-flask-boring

A "boring technology" template for the Flask microframework.

This a minimalist's production-ready Flask project template with a set of all-important end-user features (authentication, user data management, etc.) built with a boring technology.

This template builds on cookiecutter-flask-minimal, shares its minimalistic approach, and provides a feature-rich starting point for a new web application. Just like its parent template, it attempts to impose as few choices as possible, or proposes the most boring solutions where a dependency is inevitable. It adds:

And the fetures inherited from the parent cookiecutter-flask-minimal:

Built for Flask 3 !

Usage

Install cookiecutter:

pip install --user cookiecutter

Create your application from this template:

cookiecutter https://github.com/candidtim/cookiecutter-flask-boring.git

Contributions

... are welcome! Feel free to create a pull request to fix bugs or keep up to date.

If you think some additional feature is indispensable, feel free to create an issue or a pull request, but bare in mind that the goal of this template is to stay a "minimal" one. If you would like to add a feature, maybe best way to do so is to make it optional and off by default then. One can use cookiecutter's choice variables, and, ultimately, hooks, in order to create an optional feature.

If you do a change, use make test from root directory to test the updated template.