https://github.com/app-generator/cookiecutter-flask-sites
CookieCutter Template - Flask Websites | AppSeed
https://github.com/app-generator/cookiecutter-flask-sites
appseed cookiecutter flask
Last synced: 2 months ago
JSON representation
CookieCutter Template - Flask Websites | AppSeed
- Host: GitHub
- URL: https://github.com/app-generator/cookiecutter-flask-sites
- Owner: app-generator
- License: other
- Created: 2021-11-20T14:12:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-24T15:37:19.000Z (over 4 years ago)
- Last Synced: 2025-07-20T05:54:44.704Z (11 months ago)
- Topics: appseed, cookiecutter, flask
- Language: Python
- Homepage: https://blog.appseed.us/cookie-cutter-flask-generate-website-templates/
- Size: 24.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [Cookie-Cutter Flask](https://blog.appseed.us/cookie-cutter-flask-generate-website-templates/) Sites
**Flask Cookie-Cutter** is an open-source `cookiecutter` template built on top of a simple **Flask** codebase with a modern design. For newcomers, **Cookiecutter** is a command-line utility that creates projects from project templates and Django is a leading web framework built by experts using a batteries-included concept.
- UI Themes: `Pixel Lite` / `Material Kit`
- Generated Projects Features:
- `Up-to-date dependencies`: **Flask 2.0.1**
- `SCSS` -> `CSS` compilation via **Gulp**
- Persistence: `SQLite` / `MySql` / `PostgreSQL`
- `Session-Based Authentication`, Forms validation
- **Deployment**: `Gunicorn` / `Nginx`
- One-line **Docker** setup
- `docker-compose up --build`

> Project Customization:
- Project information: `name`, `author`, `email`
- Database Engine: `SQLite`, `MySql` or `PostgreSql`
- UI Themes:
- LIVE Preview: [Pixel Lite](https://flask-pixel-lite.appseed-srv1.com)
- LIVE Preview: [Material Kit](https://flask-material-kit.appseed-srv1.com)
> Links
- [Flask Apps](https://appseed.us/apps/flask-apps) - index provided by AppSeed
- [Open-Source Dashboards](https://appseed.us/admin-dashboards/open-source) - crafted in **Flask**, **Django**, [React](https://appseed.us/apps/react)
- Support via **Github** (issues tracker) and [Discord](https://discord.gg/fZC6hup).
## How to use it
### Using `cookiecutter` tool
> **Step #1** - Create a virtual environment
```bash
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .\env\Scripts\activate
```
> **Step #2** - Install Depenedencies
```bash
$ # Install modules - SQLite Storage
$ pip3 install -r requirements.txt
```
> **Step #3** - Generate the project
```bash
$ cookiecutter https://github.com/app-generator/cookiecutter-flask-sites.git
```
### Using `appseed-shell` package
> **Step #1** - Install Dependencies
```bash
$ pip3 install cookiecutter
$ pip3 install GitPython
$ pip3 install appseed-shell
```
> **Step #2** - Launch the Python shell and generate the product
```python
$ python
>>> from appseed_shell import generate_flask_sites
>>> generate_flask_sites()
```
## Credits & Links
For more resources and support please access:
- [AppSeed](https://appseed.us) - For more starters and support
- [AppSeed Shell](https://github.com/app-generator/appseed-shell-py) - source code (MIT License)
---
**[Cookie-Cutter Flask](https://blog.appseed.us/cookie-cutter-flask-generate-website-templates/)** - Provided by **AppSeed** [App Generator](https://appseed.us/app-generator).