https://github.com/mattrasband/cookiecutter-flask
Cookiecutter for my standard flask application
https://github.com/mattrasband/cookiecutter-flask
cookiecutter cookiecutter-flask cookiecutter-template flask
Last synced: about 2 months ago
JSON representation
Cookiecutter for my standard flask application
- Host: GitHub
- URL: https://github.com/mattrasband/cookiecutter-flask
- Owner: mattrasband
- Created: 2017-05-24T03:28:33.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-28T16:48:20.000Z (about 9 years ago)
- Last Synced: 2025-05-16T05:37:22.226Z (about 1 year ago)
- Topics: cookiecutter, cookiecutter-flask, cookiecutter-template, flask
- Language: Python
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cookiecutter-flask
Cookiecutter template for how I write flask projects, usually kept up to date.
It includes the following:
* Basic flask app setup, using the application factory pattern
* Config is set up via classes, use `PY_ENV=` to select, if ommitted prod is assumed to protect you.
* `Dockerfile` and `docker-compose.yml` to run local dependencies easily
* Flask, Flask-Login, Flask-SQLAlchemy, and postgres assumed
## Usage
If you don't have [cookiecutter](https://github.com/audreyr/cookiecutter) installed:
pip install cookiecutter
Then generate the project, you will be prompted for configuration options:
cookiecutter gh:mrasband/cookiecutter-flask
Notes:
* If no `docker_org` is provided, the docker files won't be included.