Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/app-generator/flask-paper-kit

Flask Boilerplate - Paper Kit Design | AppSeed
https://github.com/app-generator/flask-paper-kit

appseed flask flask-boilerplate open-source web-app-generator

Last synced: 3 months ago
JSON representation

Flask Boilerplate - Paper Kit Design | AppSeed

Awesome Lists containing this project

README

        

# [Flask Paper Kit](https://appseed.us/apps/flask-apps/flask-paper-kit)

`Open-Source` **[Flask App](https://appseed.us/apps/flask/)** crafted on top of a modern design, Paper Kit Design - Provided by **AppSeed**.

> Features

- SQLite database
- SQLAlchemy ORM
- Session-Based authentication flow (login, register)
- UI Kit: [Paper Kit](https://github.com/app-generator/fork-paper-kit-html) by **Creative-Tim**


## Build from sources

```bash
$ # Clone the sources
$ git clone https://github.com/app-generator/flask-paper-kit.git
$ cd flask-paper-kit
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv --no-site-packages env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv --no-site-packages env
$ # .\env\Scripts\activate
$
$ # Install requirements
$ pip3 install -r requirements.txt
$
$ # Set the FLASK_APP environment variable
$ (Unix/Mac) export FLASK_APP=run.py
$ (Windows) set FLASK_APP=run.py
$ (Powershell) $env:FLASK_APP = ".\run.py"
$
$ # Set up the DEBUG environment
$ # (Unix/Mac) export FLASK_ENV=development
$ # (Windows) set FLASK_ENV=development
$ # (Powershell) $env:FLASK_ENV = "development"
$
$ # Run the application
$ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1)
$ # --port=5000 - specify the app port (default 5000)
$ flask run --host=0.0.0.0 --port=5000
$
$ # Access the app in browser: http://127.0.0.1:5000/
```


## Support

- Free support via eMail < [support @ appseed.us](https://appseed.us/support) > and **Github** issues tracker
- 24/7 Live Support via [Discord](https://discord.gg/fZC6hup) for paid plans and commercial products.


## Credits & Links

- [Flask Paper Kit](https://appseed.us/apps/flask-apps/flask-paper-kit) - Product page
- [Flask Framework](https://www.palletsprojects.com/p/flask/) - The offcial website
- [Flask Boilerplate - Open-Source Apps built with automation tools](https://dev.to/sm0ke/flask-boilerplate-open-source-apps-built-with-automation-tools-4925) - a popular article published on **Dev.to** platform

## License

@MIT


---
[Flask Paper Kit](https://appseed.us/apps/flask-apps/flask-paper-kit) - Provided by **AppSeed** [Web App Generator](https://appseed.us/app-generator).