├── .circleci └── config.yml ├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── fz ├── bundle.sh ├── changelog.md ├── docs ├── Makefile ├── doc8.ini ├── make.bat └── source │ ├── conf.py │ ├── contributing.rst │ ├── glossary.rst │ ├── index.rst │ └── quick-start │ ├── images │ ├── cake-entity-added.png │ └── health-endpoint.png │ ├── index.rst │ ├── step-1-setup.rst │ ├── step-2-install-flaskerize.rst │ ├── step-3-creating-a-flask-app.rst │ ├── step-4-structure-of-api.rst │ ├── step-5-adding-an-entity.rst │ └── step-6-over-to-you.rst ├── flaskerize ├── __init__.py ├── attach.py ├── attach_test.py ├── custom_functions.py ├── custom_functions_test.py ├── exceptions.py ├── fileio.py ├── fileio_test.py ├── generate.py ├── generate_test.py ├── global │ ├── __init__.py │ ├── generate.json │ └── schema.json ├── parser.py ├── parser_test.py ├── render.py ├── render_test.py ├── schematics │ ├── README.md │ ├── __init__.py │ ├── app │ │ ├── files │ │ │ └── {{ name }}.py.template │ │ ├── run.py │ │ └── schema.json │ ├── entity │ │ ├── custom_functions.py │ │ ├── files │ │ │ └── {{ name }}.template │ │ │ │ ├── __init__.py.template │ │ │ │ ├── controller.py.template │ │ │ │ ├── controller_test.py.template │ │ │ │ ├── interface.py.template │ │ │ │ ├── interface_test.py.template │ │ │ │ ├── model.py.template │ │ │ │ ├── model_test.py.template │ │ │ │ ├── schema.py.template │ │ │ │ ├── schema_test.py.template │ │ │ │ ├── service.py.template │ │ │ │ └── service_test.py.template │ │ ├── run.py │ │ └── schema.json │ ├── flask-api.png │ ├── flask-api │ │ ├── custom_functions.py │ │ ├── files │ │ │ ├── .gitignore │ │ │ └── {{ name }}.template │ │ │ │ ├── README.md │ │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__test.py │ │ │ │ ├── app-test.db │ │ │ │ ├── config.py │ │ │ │ ├── routes.py │ │ │ │ └── widget │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── controller_test.py │ │ │ │ │ ├── interface.py │ │ │ │ │ ├── interface_test.py │ │ │ │ │ ├── model.py │ │ │ │ │ ├── model_test.py │ │ │ │ │ ├── schema.py │ │ │ │ │ ├── schema_test.py │ │ │ │ │ ├── service.py │ │ │ │ │ └── service_test.py │ │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ └── seed_command.py │ │ │ │ ├── manage.py │ │ │ │ └── requirements.txt │ │ ├── run.py │ │ └── schema.json │ ├── flask-plotly │ │ ├── custom_functions.py │ │ ├── files │ │ │ ├── .gitkeep │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── main │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── view.py │ │ │ │ └── templates │ │ │ │ │ ├── base.html │ │ │ │ │ └── plotly-chart.html │ │ │ └── requirements.txt │ │ ├── run.py │ │ └── schema.json │ ├── schematic │ │ ├── files │ │ │ └── {{ name }}.template │ │ │ │ ├── custom_functions.py.template │ │ │ │ ├── files │ │ │ │ └── .gitkeep │ │ │ │ ├── run.py.template │ │ │ │ └── schema.json.template │ │ ├── run.py │ │ ├── schema.json │ │ └── schematic_test.py │ └── setup │ │ ├── __init__.py │ │ ├── files │ │ └── setup.py.template │ │ ├── run.py │ │ ├── schema.json │ │ └── schematic_test.py ├── utils.py └── utils_test.py ├── pytest.ini ├── requirements.dev.txt └── setup.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/README.md -------------------------------------------------------------------------------- /bin/fz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/bin/fz -------------------------------------------------------------------------------- /bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/bundle.sh -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/doc8.ini: -------------------------------------------------------------------------------- 1 | [doc8] 2 | ignore=D001 3 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/glossary.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/quick-start/images/cake-entity-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/images/cake-entity-added.png -------------------------------------------------------------------------------- /docs/source/quick-start/images/health-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/images/health-endpoint.png -------------------------------------------------------------------------------- /docs/source/quick-start/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/index.rst -------------------------------------------------------------------------------- /docs/source/quick-start/step-1-setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/step-1-setup.rst -------------------------------------------------------------------------------- /docs/source/quick-start/step-2-install-flaskerize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/step-2-install-flaskerize.rst -------------------------------------------------------------------------------- /docs/source/quick-start/step-3-creating-a-flask-app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/step-3-creating-a-flask-app.rst -------------------------------------------------------------------------------- /docs/source/quick-start/step-4-structure-of-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/step-4-structure-of-api.rst -------------------------------------------------------------------------------- /docs/source/quick-start/step-5-adding-an-entity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/step-5-adding-an-entity.rst -------------------------------------------------------------------------------- /docs/source/quick-start/step-6-over-to-you.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/docs/source/quick-start/step-6-over-to-you.rst -------------------------------------------------------------------------------- /flaskerize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/__init__.py -------------------------------------------------------------------------------- /flaskerize/attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/attach.py -------------------------------------------------------------------------------- /flaskerize/attach_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/attach_test.py -------------------------------------------------------------------------------- /flaskerize/custom_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/custom_functions.py -------------------------------------------------------------------------------- /flaskerize/custom_functions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/custom_functions_test.py -------------------------------------------------------------------------------- /flaskerize/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/exceptions.py -------------------------------------------------------------------------------- /flaskerize/fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/fileio.py -------------------------------------------------------------------------------- /flaskerize/fileio_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/fileio_test.py -------------------------------------------------------------------------------- /flaskerize/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/generate.py -------------------------------------------------------------------------------- /flaskerize/generate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/generate_test.py -------------------------------------------------------------------------------- /flaskerize/global/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/global/generate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/global/generate.json -------------------------------------------------------------------------------- /flaskerize/global/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/global/schema.json -------------------------------------------------------------------------------- /flaskerize/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/parser.py -------------------------------------------------------------------------------- /flaskerize/parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/parser_test.py -------------------------------------------------------------------------------- /flaskerize/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/render.py -------------------------------------------------------------------------------- /flaskerize/render_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/render_test.py -------------------------------------------------------------------------------- /flaskerize/schematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/README.md -------------------------------------------------------------------------------- /flaskerize/schematics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/app/files/{{ name }}.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/app/files/{{ name }}.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/app/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/app/run.py -------------------------------------------------------------------------------- /flaskerize/schematics/app/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/app/schema.json -------------------------------------------------------------------------------- /flaskerize/schematics/entity/custom_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/custom_functions.py -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/__init__.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/__init__.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/controller.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/controller.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/controller_test.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/controller_test.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/interface.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/interface.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/interface_test.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/interface_test.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/model.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/model.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/model_test.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/model_test.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/schema.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/schema.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/schema_test.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/schema_test.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/service.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/service.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/files/{{ name }}.template/service_test.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/files/{{ name }}.template/service_test.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/entity/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/run.py -------------------------------------------------------------------------------- /flaskerize/schematics/entity/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/entity/schema.json -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api.png -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/custom_functions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/.gitignore -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/README.md -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/__init__.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/__init__test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/__init__test.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/app-test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/app-test.db -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/config.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/routes.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/__init__.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/controller.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/controller_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/controller_test.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/interface.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/interface_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/interface_test.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/model.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/model_test.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/schema.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/schema_test.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/service.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/app/widget/service_test.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/commands/__init__.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/commands/seed_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/commands/seed_command.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/manage.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/files/{{ name }}.template/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/files/{{ name }}.template/requirements.txt -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/run.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/flask-api/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-api/schema.json -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/custom_functions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/files/app/__init__.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/files/app/config.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/files/app/main/__init__.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/app/main/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/files/app/main/view.py -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/files/app/templates/base.html -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/app/templates/plotly-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/files/app/templates/plotly-chart.html -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/files/requirements.txt -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/run.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/flask-plotly/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/flask-plotly/schema.json -------------------------------------------------------------------------------- /flaskerize/schematics/schematic/files/{{ name }}.template/custom_functions.py.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/schematic/files/{{ name }}.template/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/schematic/files/{{ name }}.template/run.py.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/schematic/files/{{ name }}.template/schema.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/schematic/files/{{ name }}.template/schema.json.template -------------------------------------------------------------------------------- /flaskerize/schematics/schematic/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/schematic/run.py -------------------------------------------------------------------------------- /flaskerize/schematics/schematic/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/schematic/schema.json -------------------------------------------------------------------------------- /flaskerize/schematics/schematic/schematic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/schematic/schematic_test.py -------------------------------------------------------------------------------- /flaskerize/schematics/setup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerize/schematics/setup/files/setup.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/setup/files/setup.py.template -------------------------------------------------------------------------------- /flaskerize/schematics/setup/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/setup/run.py -------------------------------------------------------------------------------- /flaskerize/schematics/setup/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/setup/schema.json -------------------------------------------------------------------------------- /flaskerize/schematics/setup/schematic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/schematics/setup/schematic_test.py -------------------------------------------------------------------------------- /flaskerize/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/utils.py -------------------------------------------------------------------------------- /flaskerize/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/flaskerize/utils_test.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apryor6/flaskerize/HEAD/setup.py --------------------------------------------------------------------------------