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

https://github.com/schenkd/flask-core

My base flask achitecture for RDBMS
https://github.com/schenkd/flask-core

boilerplate flask flask-api flask-application flask-framework flask-sqlalchemy template

Last synced: 7 days ago
JSON representation

My base flask achitecture for RDBMS

Awesome Lists containing this project

README

          

# flask-core

My basic flask framework and architecture for most of my projects

## how to use it?

Just clone the repository and setup some requirements :smirk:

### virtualenv requirements.txt

```bash
$ virtualenv -p python3 venv
$ source venv/bin/activate
```

### pip requirements

```bash
$ pip install -r requirements.txt
```

## Whats inside?

* commander for shell and db
* Flask migration
* Pre-configured Dev, Test and Working Config
* SQLite with 3 different stages
* A blueprint for the main view
* MomentJS via Flask-Extension
* SQLAlchemy ORM
* Some db scripts (thank you miguel grinberg!)