A full feature Flask project template.
See also
- Python-Project-Template for a lean, low dependency Python app.
- FastAPI-Project-Template The base to start an openapi project featuring: SQLModel, Typer, FastAPI, JWT Token Auth, Interactive Shell, Management Commands.
DO NOT FORK this is meant to be used from Use this template feature.
- Click on Use this template
- Give a name to your project
(e.g.my_awesome_project
recommendation is to use all lowercase and underscores separation for repo names.) - Wait until the first run of CI finishes
(Github Actions will process the template and commit to your new repo) - If you want codecov Reports and Automatic Release to PyPI
On the new repositorysettings->secrets
add yourPIPY_API_TOKEN
andCODECOV_TOKEN
(get the tokens on respective websites) - Read the file CONTRIBUTING.md
- Then clone your new project and happy coding!
NOTE: WAIT until first CI run on github actions before cloning your new project.
- πΎ A full feature Flask application with CLI, API, Admin interface, web UI and modular configuration.
- π¦ A basic setup.py file to provide installation, packaging and distribution for your project.
Template uses setuptools because it's the de-facto standard for Python packages, you can runmake switch-to-poetry
later if you want. - π€ A Makefile with the most useful commands to install, test, lint, format and release your project.
- π Documentation structure using mkdocs
- π¬ Auto generation of change log using gitchangelog to keep a HISTORY.md file automatically based on your commit history on every release.
- π A simple Containerfile to build a container image for your project.
Containerfile
is a more open standard for building container images than Dockerfile, you can use buildah or docker with this file. - π§ͺ Testing structure using pytest
- β Code linting using flake8
- π Code coverage reports using codecov
- π³οΈ Automatic release to PyPI using twine and github actions.
- π― Entry points to execute your program using
python -m <cookgpt>
or$ cookgpt
with basic CLI argument parsing. - π Continuous integration using Github Actions with jobs to lint, test and release your project on Linux, Mac and Windows environments.
Curious about architectural decisions on this template? read ABOUT_THIS_TEMPLATE.md
If you want to contribute to this template please open an issue or fork and send a PULL REQUEST.
Awesome cookgpt created by Mcsavvy
From source:
git clone https://github.com/Mcsavvy/CookGPT cookgpt
cd cookgpt
make install
From pypi:
pip install cookgpt
This application has a CLI interface that extends the Flask CLI.
Just run:
$ cookgpt
or
$ python -m cookgpt
To see the help message and usage instructions.
cookgpt create-db # run once
cookgpt populate-db # run once (optional)
cookgpt add-user -u admin -p 1234 # ads a user
cookgpt run
Go to:
- Website: http://localhost:5000
- Admin: http://localhost:5000/admin/
- user: admin, senha: 1234
- API GET:
Note: You can also use
flask run
to run the application.