├── .gitignore ├── LICENSE ├── README.md ├── app ├── __init__.py ├── app.py ├── blueprints │ ├── __boilerplate__ │ │ ├── models │ │ │ ├── default.py.template │ │ │ └── with_id.py.template │ │ ├── skeletons │ │ │ └── default │ │ │ │ ├── __init__.py │ │ │ │ ├── commands │ │ │ │ └── __init__.py │ │ │ │ ├── enums │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ └── __init__.py │ │ │ │ ├── routes.py │ │ │ │ ├── utils │ │ │ │ └── __init__.py │ │ │ │ └── views │ │ │ │ └── __init__.py │ │ └── views │ │ │ ├── flask_mv │ │ │ ├── routes.py.template │ │ │ └── view.py.template │ │ │ ├── flask_view │ │ │ ├── routes.py.template │ │ │ └── view.py.template │ │ │ └── standard │ │ │ └── routes.py.template │ ├── __init__.py │ ├── about │ │ ├── __init__.py │ │ ├── commands │ │ │ └── __init__.py │ │ ├── enums │ │ │ └── __init__.py │ │ ├── models │ │ │ └── __init__.py │ │ ├── routes.py │ │ ├── templates │ │ │ └── about.jinja2 │ │ ├── utils │ │ │ └── __init__.py │ │ └── views │ │ │ ├── __init__.py │ │ │ └── about.py │ ├── index_page │ │ ├── __init__.py │ │ ├── commands │ │ │ └── __init__.py │ │ ├── enums │ │ │ └── __init__.py │ │ ├── models │ │ │ └── __init__.py │ │ ├── routes.py │ │ ├── templates │ │ │ └── index.jinja2 │ │ ├── utils │ │ │ └── __init__.py │ │ └── views │ │ │ └── __init__.py │ └── utils.py ├── commands │ ├── __init__.py │ └── application │ │ ├── __init__.py │ │ └── blueprints │ │ ├── __init__.py │ │ ├── create.py │ │ └── list.py ├── errors │ └── __init__.py ├── ext │ ├── __init__.py │ ├── cache │ │ └── __init__.py │ ├── sentry │ │ └── __init__.py │ └── sqlalchemy │ │ ├── __init__.py │ │ ├── database.py │ │ └── model.py ├── jinja │ ├── __init__.py │ ├── context_processor.py │ └── filters.py ├── templates │ ├── error-pages │ │ └── 404.jinja2 │ └── layouts │ │ └── main.jinja2 └── utils │ ├── __init__.py │ └── filesystem.py ├── config ├── __init__.py ├── default.py ├── development.py └── production.py ├── configure.py ├── instance └── config.py.template ├── requirements.txt ├── webservice.ini └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/app.py -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/models/default.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/models/default.py.template -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/models/with_id.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/models/with_id.py.template -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/skeletons/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/skeletons/default/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/skeletons/default/commands/__init__.py -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/skeletons/default/enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/skeletons/default/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/skeletons/default/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/skeletons/default/routes.py -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/skeletons/default/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/skeletons/default/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/views/flask_mv/routes.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/views/flask_mv/routes.py.template -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/views/flask_mv/view.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/views/flask_mv/view.py.template -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/views/flask_view/routes.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/views/flask_view/routes.py.template -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/views/flask_view/view.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/views/flask_view/view.py.template -------------------------------------------------------------------------------- /app/blueprints/__boilerplate__/views/standard/routes.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__boilerplate__/views/standard/routes.py.template -------------------------------------------------------------------------------- /app/blueprints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/__init__.py -------------------------------------------------------------------------------- /app/blueprints/about/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/about/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/about/commands/__init__.py -------------------------------------------------------------------------------- /app/blueprints/about/enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/about/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/about/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/about/routes.py -------------------------------------------------------------------------------- /app/blueprints/about/templates/about.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/about/templates/about.jinja2 -------------------------------------------------------------------------------- /app/blueprints/about/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/about/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/about/views/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/about/views/about.py -------------------------------------------------------------------------------- /app/blueprints/index_page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/index_page/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/index_page/enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/index_page/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/index_page/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/index_page/routes.py -------------------------------------------------------------------------------- /app/blueprints/index_page/templates/index.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/index_page/templates/index.jinja2 -------------------------------------------------------------------------------- /app/blueprints/index_page/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/index_page/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/blueprints/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/blueprints/utils.py -------------------------------------------------------------------------------- /app/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/commands/__init__.py -------------------------------------------------------------------------------- /app/commands/application/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/commands/application/__init__.py -------------------------------------------------------------------------------- /app/commands/application/blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/application/blueprints/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/commands/application/blueprints/create.py -------------------------------------------------------------------------------- /app/commands/application/blueprints/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/commands/application/blueprints/list.py -------------------------------------------------------------------------------- /app/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/errors/__init__.py -------------------------------------------------------------------------------- /app/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ext/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/ext/cache/__init__.py -------------------------------------------------------------------------------- /app/ext/sentry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/ext/sentry/__init__.py -------------------------------------------------------------------------------- /app/ext/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/ext/sqlalchemy/__init__.py -------------------------------------------------------------------------------- /app/ext/sqlalchemy/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/ext/sqlalchemy/database.py -------------------------------------------------------------------------------- /app/ext/sqlalchemy/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/ext/sqlalchemy/model.py -------------------------------------------------------------------------------- /app/jinja/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/jinja/__init__.py -------------------------------------------------------------------------------- /app/jinja/context_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/jinja/context_processor.py -------------------------------------------------------------------------------- /app/jinja/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/jinja/filters.py -------------------------------------------------------------------------------- /app/templates/error-pages/404.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/templates/error-pages/404.jinja2 -------------------------------------------------------------------------------- /app/templates/layouts/main.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/templates/layouts/main.jinja2 -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/utils/__init__.py -------------------------------------------------------------------------------- /app/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/app/utils/filesystem.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/config/default.py -------------------------------------------------------------------------------- /config/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/config/development.py -------------------------------------------------------------------------------- /config/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/config/production.py -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/configure.py -------------------------------------------------------------------------------- /instance/config.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/instance/config.py.template -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/requirements.txt -------------------------------------------------------------------------------- /webservice.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/webservice.ini -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abstractkitchen/flask-backbone/HEAD/wsgi.py --------------------------------------------------------------------------------