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
- Host: GitHub
- URL: https://github.com/schenkd/flask-core
- Owner: schenkd
- Created: 2016-07-09T02:53:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-22T18:18:42.000Z (about 9 years ago)
- Last Synced: 2025-11-13T14:03:36.570Z (5 months ago)
- Topics: boilerplate, flask, flask-api, flask-application, flask-framework, flask-sqlalchemy, template
- Language: Python
- Homepage:
- Size: 12.4 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!)