├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── dependabot.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── GrapeJS-Test ├── css │ ├── fonts │ │ ├── main-fonts.eot │ │ ├── main-fonts.svg │ │ ├── main-fonts.ttf │ │ └── main-fonts.woff │ ├── lib │ │ ├── grapes.min.css │ │ └── grapesjs-preset-webpage.min.css │ └── main.css ├── index - 2.html ├── index - 3.html ├── index.html ├── js │ ├── lib │ │ ├── grapes.min.js │ │ └── grapesjs-preset-webpage.min.js │ └── main.js └── plugin-test.js ├── LICENSE ├── README.md ├── Reference List Licenses.xlsx ├── References ├── (68) Example apps you can build on Google App Maker - Sheets to Apps - YouTube.url ├── (68) Getting Started with App Maker - YouTube.url ├── 2e2ac4_ffe1e6fea5374b239f32dd9aa6f76b85.pdf ├── Adalo - Build Your Own No Code App.url ├── AdminLTE 2 - Dashboard.url ├── AdminLTE 3 - Dashboard.url ├── Airtable - Create apps that perfectly fit your team's needs.url ├── AppSheet - Make an App with No-Code. Start building today for free.url ├── Appian- Low-Code Automation - Business Apps - BPM - RPA.url ├── Bubble - The best way to build web apps without code.url ├── Budibase - Open source low code platform you'll enjoy using.url ├── BuilderX - Design tool that codes React Native & React.url ├── Codename One- Cross-Platform App Development with Java or Kotlin.url ├── ColorlibHQ-AdminLTE- AdminLTE - Free admin dashboard template based on Bootstrap 4.url ├── Divblox - Create experiences. Not just apps.url ├── Free JAMstack website builder - Cobiro.url ├── Glide - Build an app from a Google Sheet in five minutes, for free.url ├── GrapesJS Demo - Free Open Source Website Page Builder.url ├── GrapesJS.url ├── How-to-select-a-no-code-platform_EN final version.pdf ├── Jasonette - Native App over HTTP.url ├── Linx is A Low-Code Platform for Developers to Build and Host APIs.url ├── Mendix - Low-code Application Development Platform - Build Apps Fast & Efficiently.url ├── Microsoft Power Apps - Business Apps.url ├── Mockplus - Design, Prototype & Collaborate better and faster.url ├── Open As App - Automatic app creation for everyone.url ├── Open-Source Low-Code App Development Business Process Management Integration Platform LP - Planet Crust.url ├── Oracle APEX - Videos.url ├── OutSystems - Build Applications Fast, Right and For the Future.url ├── Plasmic - the visual page builder and web design tool that works with React.url ├── Siberian CMS - Free Open-Source App Maker- Build your own app.url ├── Siberian CMS App Maker- Dozens of Features for your Apps.url ├── Top 7 tools to create an Entity Relationship Diagram (ERD), 2020 - The Official Trevor.io Blog.url ├── Webflow- The no-code platform for web design and development.url ├── Zoho Creator - Low-code platform - Custom application creator for your business.url └── {5adce11b-2d16-4c05-8a1d-2107c5ae0d6b}_Top_5_considerations_for_choosing_a_game_engine.pdf ├── create_project_git.py ├── design └── logo │ ├── 2572630.png │ ├── Bracket - Free web icons.url │ ├── license.pdf │ └── logo.svg ├── mobile_app ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.js ├── FLASK-BDA LICENSE ├── LICENSE ├── README.md ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── notification_alert.mp3 │ ├── offline.png │ ├── splash.png │ └── warning.png ├── babel.config.js ├── package-lock.json └── package.json └── template ├── .dockerignore ├── .github └── workflows │ ├── docker-image.yml │ └── run_tests.yml ├── .gitignore ├── .nanorc ├── .vscode ├── launch.json └── settings.json ├── Dockerfile ├── FLASK-BDA LICENSE ├── LICENSE ├── Procfile ├── README.md ├── app ├── __init__.py ├── abstract_base_classes │ └── storage_broker_abc.py ├── generated_config │ ├── model_editor │ │ ├── css │ │ │ └── styles.css │ │ ├── data │ │ │ ├── field_templates.json │ │ │ └── model_fields.json │ │ ├── js │ │ │ └── script.js │ │ └── model_editor.html │ └── models │ │ ├── api_keys │ │ └── models.json │ │ ├── cache_hierarchies │ │ └── models.json │ │ ├── calendar_definitions │ │ └── models.json │ │ ├── calendar_periods │ │ └── models.json │ │ ├── hierarchies │ │ └── models.json │ │ ├── organisations │ │ └── models.json │ │ ├── roles │ │ └── models.json │ │ ├── site_settings │ │ └── models.json │ │ ├── statuses │ │ └── models.json │ │ └── web_hooks │ │ └── models.json ├── mod_api_keys │ ├── __init__.py │ ├── api_controllers.py │ ├── api_required.py │ ├── brokers │ │ └── sql_alch_broker.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── service.py │ ├── templates │ │ ├── api_keys │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── mobile │ │ │ └── api_keys │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_audit │ ├── __init__.py │ ├── controllers.py │ ├── forms.py │ └── models.py ├── mod_blockchain │ ├── __init__.py │ ├── block.py │ ├── blockchain.py │ └── transaction.py ├── mod_cache_hierarchies │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── cache_hierarchies │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── mobile │ │ │ └── cache_hierarchies │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_calendar_definitions │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── calendar_definitions │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── mobile │ │ │ └── calendar_definitions │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_calendar_periods │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── calendar_periods │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── mobile │ │ │ └── calendar_periods │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_calendar_periods_old │ ├── api_controllers.py │ ├── controllers.py │ ├── create_periods.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── calendar_periods │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── mobile │ │ │ └── calendar_periods │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_email │ ├── __init__.py │ ├── controllers.py │ └── models.py ├── mod_encryption │ ├── anonymization_encryption.py │ ├── diffie_hellman_encryption.py │ ├── primes.py │ ├── pseudoanonymization_encryption.py │ ├── scramble_encryption.py │ ├── substitution_encryption.py │ └── words.txt ├── mod_expo_push_notification │ └── expo_push_notification.py ├── mod_file_upload │ ├── __init__.py │ ├── controllers.py │ ├── models.py │ └── templates │ │ └── file_upload │ │ └── upload.html ├── mod_graphql │ ├── __init__.py │ ├── controllers.py │ ├── mutation.py │ ├── query.py │ └── schema.py ├── mod_helper_functions │ ├── __init__.py │ └── functions.py ├── mod_hierarchies │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── hierarchies │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── mobile │ │ │ └── hierarchies │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_organisations │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── mobile │ │ │ └── organisations │ │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── organisations │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_pre_post_hooks │ └── pre_post_hooks.py ├── mod_queues │ └── queues.py ├── mod_site_settings │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── mobile │ │ │ └── site_settings │ │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── site_settings │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_statuses │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── mobile │ │ │ └── statuses │ │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── statuses │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_tenancy │ ├── __init__.py │ ├── multi_bind.py │ └── multi_tenant.py ├── mod_users │ ├── __init__.py │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── email │ │ │ ├── activate.html │ │ │ └── reset.html │ │ └── users │ │ │ ├── forgot.html │ │ │ ├── login.html │ │ │ ├── profile.html │ │ │ ├── register.html │ │ │ └── unconfirmed.html │ └── types.py ├── mod_web_hooks │ ├── api_controllers.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── mobile │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ └── web_hooks │ │ │ │ ├── admin │ │ │ │ ├── create.html │ │ │ │ ├── edit.html │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ │ └── public │ │ │ │ └── public_list.html │ │ └── web_hooks │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── types.py ├── mod_workflow_manager │ └── workflow_manager.py ├── static │ ├── css │ │ ├── 404_style.css │ │ ├── adminlte.min.css │ │ ├── adminlte.min.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── styles.css │ ├── db_models │ │ ├── all_models.js │ │ └── all_models.json │ ├── images │ │ ├── bars.svg │ │ ├── icon-192.png │ │ ├── icon-512.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── today.png │ │ └── tomorrow.png │ ├── js │ │ ├── Message Encryption Brwoser (basic).txt │ │ ├── Message Encryption Brwoser failed).txt │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── helper_functions.js │ │ ├── immortal-db.min.js │ │ ├── install_prompt.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── pwacompat.min.js │ │ ├── register_sw.js │ │ ├── script.js │ │ ├── web_push.js │ │ └── web_share.js │ ├── manifest.json │ ├── menus │ │ ├── all_menus.js │ │ └── all_menus.json │ └── sw.js └── templates │ ├── 403.html │ ├── 404.html │ ├── admin │ └── index.html │ ├── errors │ ├── 403.html │ ├── 404.html │ └── 500.html │ ├── index.html │ ├── legal │ ├── privacy_policy.html │ └── terms_of_use.html │ ├── macros │ ├── flash.html │ └── form.html │ ├── mobile │ └── public │ │ └── index.html │ └── public │ └── index.html ├── cli ├── bda.py └── setup.py ├── config.py ├── create_all_models_json.py ├── create_desktop_installer_lunix.py ├── create_desktop_installer_mac.py ├── create_desktop_installer_windows.py ├── create_module.py ├── create_module_json.py ├── create_module_template ├── generated_config │ └── models │ │ └── xyz │ │ └── models.json └── mod_xyz │ ├── __init__.py │ ├── api_controllers.py │ ├── brokers │ └── sql_alch_broker.py │ ├── controllers.py │ ├── forms.py │ ├── models.py │ ├── service.py │ ├── templates │ ├── mobile │ │ └── xyz │ │ │ ├── admin │ │ │ ├── create.html │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── show.html │ │ │ └── public │ │ │ └── public_list.html │ └── xyz │ │ ├── admin │ │ ├── create.html │ │ ├── edit.html │ │ ├── index.html │ │ └── show.html │ │ └── public │ │ └── public_list.html │ └── types.py ├── databases └── sqlite │ └── default.db ├── hooks └── hooks-packages.py ├── logs └── system │ └── system.log ├── package-lock.json ├── package.json ├── requirements.txt ├── requirements ├── common.txt ├── custom_module_requirements.txt ├── dev.txt └── prod.txt ├── run.py ├── run_desktop.py ├── run_shared_server.py ├── runtime.txt ├── serverless.yml └── setup.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GrapeJS-Test/css/fonts/main-fonts.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/css/fonts/main-fonts.eot -------------------------------------------------------------------------------- /GrapeJS-Test/css/fonts/main-fonts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/css/fonts/main-fonts.svg -------------------------------------------------------------------------------- /GrapeJS-Test/css/fonts/main-fonts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/css/fonts/main-fonts.ttf -------------------------------------------------------------------------------- /GrapeJS-Test/css/fonts/main-fonts.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/css/fonts/main-fonts.woff -------------------------------------------------------------------------------- /GrapeJS-Test/css/lib/grapes.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/css/lib/grapes.min.css -------------------------------------------------------------------------------- /GrapeJS-Test/css/lib/grapesjs-preset-webpage.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/css/lib/grapesjs-preset-webpage.min.css -------------------------------------------------------------------------------- /GrapeJS-Test/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/css/main.css -------------------------------------------------------------------------------- /GrapeJS-Test/index - 2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/index - 2.html -------------------------------------------------------------------------------- /GrapeJS-Test/index - 3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/index - 3.html -------------------------------------------------------------------------------- /GrapeJS-Test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/index.html -------------------------------------------------------------------------------- /GrapeJS-Test/js/lib/grapes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/js/lib/grapes.min.js -------------------------------------------------------------------------------- /GrapeJS-Test/js/lib/grapesjs-preset-webpage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/js/lib/grapesjs-preset-webpage.min.js -------------------------------------------------------------------------------- /GrapeJS-Test/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/js/main.js -------------------------------------------------------------------------------- /GrapeJS-Test/plugin-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/GrapeJS-Test/plugin-test.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/README.md -------------------------------------------------------------------------------- /Reference List Licenses.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/Reference List Licenses.xlsx -------------------------------------------------------------------------------- /References/(68) Example apps you can build on Google App Maker - Sheets to Apps - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=N60T1Ebpe3c 3 | -------------------------------------------------------------------------------- /References/(68) Getting Started with App Maker - YouTube.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.youtube.com/watch?v=6UYXkA6kP2c 3 | -------------------------------------------------------------------------------- /References/2e2ac4_ffe1e6fea5374b239f32dd9aa6f76b85.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/References/2e2ac4_ffe1e6fea5374b239f32dd9aa6f76b85.pdf -------------------------------------------------------------------------------- /References/Adalo - Build Your Own No Code App.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.adalo.com/ 3 | -------------------------------------------------------------------------------- /References/AdminLTE 2 - Dashboard.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://adminlte.io/themes/AdminLTE/index2.html 3 | -------------------------------------------------------------------------------- /References/AdminLTE 3 - Dashboard.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://adminlte.io/themes/v3/ 3 | -------------------------------------------------------------------------------- /References/Airtable - Create apps that perfectly fit your team's needs.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://airtable.com/ 3 | -------------------------------------------------------------------------------- /References/AppSheet - Make an App with No-Code. Start building today for free.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.appsheet.com/ 3 | -------------------------------------------------------------------------------- /References/Appian- Low-Code Automation - Business Apps - BPM - RPA.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.appian.com/ 3 | -------------------------------------------------------------------------------- /References/Bubble - The best way to build web apps without code.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://bubble.io/ 3 | -------------------------------------------------------------------------------- /References/Budibase - Open source low code platform you'll enjoy using.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.budibase.com/ 3 | -------------------------------------------------------------------------------- /References/BuilderX - Design tool that codes React Native & React.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://builderx.io/ 3 | -------------------------------------------------------------------------------- /References/Codename One- Cross-Platform App Development with Java or Kotlin.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.codenameone.com/ 3 | -------------------------------------------------------------------------------- /References/ColorlibHQ-AdminLTE- AdminLTE - Free admin dashboard template based on Bootstrap 4.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/ColorlibHQ/AdminLTE 3 | -------------------------------------------------------------------------------- /References/Divblox - Create experiences. Not just apps.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://divblox.com/ 3 | -------------------------------------------------------------------------------- /References/Free JAMstack website builder - Cobiro.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/References/Free JAMstack website builder - Cobiro.url -------------------------------------------------------------------------------- /References/Glide - Build an app from a Google Sheet in five minutes, for free.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.glideapps.com/ 3 | -------------------------------------------------------------------------------- /References/GrapesJS Demo - Free Open Source Website Page Builder.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://grapesjs.com/demo.html 3 | -------------------------------------------------------------------------------- /References/GrapesJS.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://grapesjs.com/ 3 | -------------------------------------------------------------------------------- /References/How-to-select-a-no-code-platform_EN final version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/References/How-to-select-a-no-code-platform_EN final version.pdf -------------------------------------------------------------------------------- /References/Jasonette - Native App over HTTP.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://jasonette.com/ 3 | -------------------------------------------------------------------------------- /References/Linx is A Low-Code Platform for Developers to Build and Host APIs.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://linx.software/ 3 | -------------------------------------------------------------------------------- /References/Mendix - Low-code Application Development Platform - Build Apps Fast & Efficiently.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.mendix.com/ 3 | -------------------------------------------------------------------------------- /References/Microsoft Power Apps - Business Apps.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://powerapps.microsoft.com/en-us/ 3 | -------------------------------------------------------------------------------- /References/Mockplus - Design, Prototype & Collaborate better and faster.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.mockplus.com/ 3 | -------------------------------------------------------------------------------- /References/Open As App - Automatic app creation for everyone.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.openasapp.com/ 3 | -------------------------------------------------------------------------------- /References/Open-Source Low-Code App Development Business Process Management Integration Platform LP - Planet Crust.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/References/Open-Source Low-Code App Development Business Process Management Integration Platform LP - Planet Crust.url -------------------------------------------------------------------------------- /References/Oracle APEX - Videos.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://apex.oracle.com/en/learn/videos/ 3 | -------------------------------------------------------------------------------- /References/OutSystems - Build Applications Fast, Right and For the Future.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.outsystems.com/ 3 | -------------------------------------------------------------------------------- /References/Plasmic - the visual page builder and web design tool that works with React.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.plasmic.app/ 3 | -------------------------------------------------------------------------------- /References/Siberian CMS - Free Open-Source App Maker- Build your own app.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/References/Siberian CMS - Free Open-Source App Maker- Build your own app.url -------------------------------------------------------------------------------- /References/Siberian CMS App Maker- Dozens of Features for your Apps.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.siberiancms.com/features/ 3 | -------------------------------------------------------------------------------- /References/Top 7 tools to create an Entity Relationship Diagram (ERD), 2020 - The Official Trevor.io Blog.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/References/Top 7 tools to create an Entity Relationship Diagram (ERD), 2020 - The Official Trevor.io Blog.url -------------------------------------------------------------------------------- /References/Webflow- The no-code platform for web design and development.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://webflow.com/ 3 | -------------------------------------------------------------------------------- /References/Zoho Creator - Low-code platform - Custom application creator for your business.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.zoho.com/creator/ 3 | -------------------------------------------------------------------------------- /References/{5adce11b-2d16-4c05-8a1d-2107c5ae0d6b}_Top_5_considerations_for_choosing_a_game_engine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/References/{5adce11b-2d16-4c05-8a1d-2107c5ae0d6b}_Top_5_considerations_for_choosing_a_game_engine.pdf -------------------------------------------------------------------------------- /create_project_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/create_project_git.py -------------------------------------------------------------------------------- /design/logo/2572630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/design/logo/2572630.png -------------------------------------------------------------------------------- /design/logo/Bracket - Free web icons.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/design/logo/Bracket - Free web icons.url -------------------------------------------------------------------------------- /design/logo/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/design/logo/license.pdf -------------------------------------------------------------------------------- /design/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/design/logo/logo.svg -------------------------------------------------------------------------------- /mobile_app/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/.expo-shared/assets.json -------------------------------------------------------------------------------- /mobile_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/.gitignore -------------------------------------------------------------------------------- /mobile_app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/App.js -------------------------------------------------------------------------------- /mobile_app/FLASK-BDA LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/FLASK-BDA LICENSE -------------------------------------------------------------------------------- /mobile_app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/LICENSE -------------------------------------------------------------------------------- /mobile_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/README.md -------------------------------------------------------------------------------- /mobile_app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/app.json -------------------------------------------------------------------------------- /mobile_app/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/assets/adaptive-icon.png -------------------------------------------------------------------------------- /mobile_app/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/assets/favicon.png -------------------------------------------------------------------------------- /mobile_app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/assets/icon.png -------------------------------------------------------------------------------- /mobile_app/assets/notification_alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/assets/notification_alert.mp3 -------------------------------------------------------------------------------- /mobile_app/assets/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/assets/offline.png -------------------------------------------------------------------------------- /mobile_app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/assets/splash.png -------------------------------------------------------------------------------- /mobile_app/assets/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/assets/warning.png -------------------------------------------------------------------------------- /mobile_app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/babel.config.js -------------------------------------------------------------------------------- /mobile_app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/package-lock.json -------------------------------------------------------------------------------- /mobile_app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/mobile_app/package.json -------------------------------------------------------------------------------- /template/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/.dockerignore -------------------------------------------------------------------------------- /template/.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /template/.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/.nanorc -------------------------------------------------------------------------------- /template/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/.vscode/launch.json -------------------------------------------------------------------------------- /template/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/.vscode/settings.json -------------------------------------------------------------------------------- /template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/Dockerfile -------------------------------------------------------------------------------- /template/FLASK-BDA LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/FLASK-BDA LICENSE -------------------------------------------------------------------------------- /template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/LICENSE -------------------------------------------------------------------------------- /template/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/Procfile -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/README.md -------------------------------------------------------------------------------- /template/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/__init__.py -------------------------------------------------------------------------------- /template/app/abstract_base_classes/storage_broker_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/abstract_base_classes/storage_broker_abc.py -------------------------------------------------------------------------------- /template/app/generated_config/model_editor/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/model_editor/css/styles.css -------------------------------------------------------------------------------- /template/app/generated_config/model_editor/data/field_templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/model_editor/data/field_templates.json -------------------------------------------------------------------------------- /template/app/generated_config/model_editor/data/model_fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/model_editor/data/model_fields.json -------------------------------------------------------------------------------- /template/app/generated_config/model_editor/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/model_editor/js/script.js -------------------------------------------------------------------------------- /template/app/generated_config/model_editor/model_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/model_editor/model_editor.html -------------------------------------------------------------------------------- /template/app/generated_config/models/api_keys/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/api_keys/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/cache_hierarchies/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/cache_hierarchies/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/calendar_definitions/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/calendar_definitions/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/calendar_periods/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/calendar_periods/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/hierarchies/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/hierarchies/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/organisations/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/organisations/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/roles/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/roles/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/site_settings/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/site_settings/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/statuses/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/statuses/models.json -------------------------------------------------------------------------------- /template/app/generated_config/models/web_hooks/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/generated_config/models/web_hooks/models.json -------------------------------------------------------------------------------- /template/app/mod_api_keys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_api_keys/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_api_keys/api_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/api_required.py -------------------------------------------------------------------------------- /template/app/mod_api_keys/brokers/sql_alch_broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/brokers/sql_alch_broker.py -------------------------------------------------------------------------------- /template/app/mod_api_keys/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/controllers.py -------------------------------------------------------------------------------- /template/app/mod_api_keys/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/forms.py -------------------------------------------------------------------------------- /template/app/mod_api_keys/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/models.py -------------------------------------------------------------------------------- /template/app/mod_api_keys/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/service.py -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/api_keys/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/api_keys/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/api_keys/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/api_keys/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/api_keys/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/api_keys/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/api_keys/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/api_keys/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/api_keys/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/api_keys/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/mobile/api_keys/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/mobile/api_keys/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/mobile/api_keys/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/mobile/api_keys/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/mobile/api_keys/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/mobile/api_keys/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/mobile/api_keys/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/mobile/api_keys/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/templates/mobile/api_keys/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/templates/mobile/api_keys/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_api_keys/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_api_keys/types.py -------------------------------------------------------------------------------- /template/app/mod_audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_audit/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_audit/controllers.py -------------------------------------------------------------------------------- /template/app/mod_audit/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_audit/forms.py -------------------------------------------------------------------------------- /template/app/mod_audit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_audit/models.py -------------------------------------------------------------------------------- /template/app/mod_blockchain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_blockchain/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_blockchain/block.py -------------------------------------------------------------------------------- /template/app/mod_blockchain/blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_blockchain/blockchain.py -------------------------------------------------------------------------------- /template/app/mod_blockchain/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_blockchain/transaction.py -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/controllers.py -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/forms.py -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/models.py -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/cache_hierarchies/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/cache_hierarchies/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/cache_hierarchies/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/templates/mobile/cache_hierarchies/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_cache_hierarchies/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_cache_hierarchies/types.py -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/controllers.py -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/forms.py -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/models.py -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/calendar_definitions/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/calendar_definitions/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/calendar_definitions/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/calendar_definitions/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/calendar_definitions/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/calendar_definitions/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/calendar_definitions/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/calendar_definitions/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/calendar_definitions/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/calendar_definitions/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/templates/mobile/calendar_definitions/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_calendar_definitions/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_definitions/types.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/controllers.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/forms.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/models.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/calendar_periods/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/calendar_periods/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/calendar_periods/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/calendar_periods/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/calendar_periods/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/calendar_periods/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/calendar_periods/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/calendar_periods/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/calendar_periods/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/calendar_periods/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/mobile/calendar_periods/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/templates/mobile/calendar_periods/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/templates/mobile/calendar_periods/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods/types.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/controllers.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/create_periods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/create_periods.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/forms.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/models.py -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/calendar_periods/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/calendar_periods/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/calendar_periods/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/calendar_periods/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/calendar_periods/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/calendar_periods/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/calendar_periods/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/calendar_periods/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/calendar_periods/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/calendar_periods/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/templates/mobile/calendar_periods/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_calendar_periods_old/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_calendar_periods_old/types.py -------------------------------------------------------------------------------- /template/app/mod_email/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_email/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_email/controllers.py -------------------------------------------------------------------------------- /template/app/mod_email/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_email/models.py -------------------------------------------------------------------------------- /template/app/mod_encryption/anonymization_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_encryption/anonymization_encryption.py -------------------------------------------------------------------------------- /template/app/mod_encryption/diffie_hellman_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_encryption/diffie_hellman_encryption.py -------------------------------------------------------------------------------- /template/app/mod_encryption/primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_encryption/primes.py -------------------------------------------------------------------------------- /template/app/mod_encryption/pseudoanonymization_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_encryption/pseudoanonymization_encryption.py -------------------------------------------------------------------------------- /template/app/mod_encryption/scramble_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_encryption/scramble_encryption.py -------------------------------------------------------------------------------- /template/app/mod_encryption/substitution_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_encryption/substitution_encryption.py -------------------------------------------------------------------------------- /template/app/mod_encryption/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_encryption/words.txt -------------------------------------------------------------------------------- /template/app/mod_expo_push_notification/expo_push_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_expo_push_notification/expo_push_notification.py -------------------------------------------------------------------------------- /template/app/mod_file_upload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_file_upload/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_file_upload/controllers.py -------------------------------------------------------------------------------- /template/app/mod_file_upload/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_file_upload/models.py -------------------------------------------------------------------------------- /template/app/mod_file_upload/templates/file_upload/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_file_upload/templates/file_upload/upload.html -------------------------------------------------------------------------------- /template/app/mod_graphql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_graphql/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_graphql/controllers.py -------------------------------------------------------------------------------- /template/app/mod_graphql/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_graphql/mutation.py -------------------------------------------------------------------------------- /template/app/mod_graphql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_graphql/query.py -------------------------------------------------------------------------------- /template/app/mod_graphql/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_graphql/schema.py -------------------------------------------------------------------------------- /template/app/mod_helper_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_helper_functions/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_helper_functions/functions.py -------------------------------------------------------------------------------- /template/app/mod_hierarchies/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_hierarchies/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/controllers.py -------------------------------------------------------------------------------- /template/app/mod_hierarchies/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/forms.py -------------------------------------------------------------------------------- /template/app/mod_hierarchies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/models.py -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/hierarchies/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/hierarchies/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/hierarchies/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/hierarchies/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/hierarchies/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/hierarchies/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/hierarchies/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/hierarchies/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/hierarchies/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/hierarchies/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/mobile/hierarchies/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/mobile/hierarchies/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/mobile/hierarchies/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/mobile/hierarchies/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/mobile/hierarchies/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/mobile/hierarchies/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/mobile/hierarchies/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/mobile/hierarchies/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/templates/mobile/hierarchies/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/templates/mobile/hierarchies/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_hierarchies/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_hierarchies/types.py -------------------------------------------------------------------------------- /template/app/mod_organisations/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_organisations/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/controllers.py -------------------------------------------------------------------------------- /template/app/mod_organisations/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/forms.py -------------------------------------------------------------------------------- /template/app/mod_organisations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/models.py -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/mobile/organisations/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/mobile/organisations/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/mobile/organisations/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/mobile/organisations/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/mobile/organisations/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/mobile/organisations/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/mobile/organisations/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/mobile/organisations/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/mobile/organisations/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/mobile/organisations/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/organisations/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/organisations/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/organisations/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/organisations/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/organisations/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/organisations/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/organisations/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/organisations/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_organisations/templates/organisations/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/templates/organisations/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_organisations/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_organisations/types.py -------------------------------------------------------------------------------- /template/app/mod_pre_post_hooks/pre_post_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_pre_post_hooks/pre_post_hooks.py -------------------------------------------------------------------------------- /template/app/mod_queues/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_queues/queues.py -------------------------------------------------------------------------------- /template/app/mod_site_settings/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_site_settings/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/controllers.py -------------------------------------------------------------------------------- /template/app/mod_site_settings/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/forms.py -------------------------------------------------------------------------------- /template/app/mod_site_settings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/models.py -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/mobile/site_settings/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/mobile/site_settings/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/mobile/site_settings/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/mobile/site_settings/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/mobile/site_settings/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/mobile/site_settings/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/mobile/site_settings/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/mobile/site_settings/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/mobile/site_settings/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/mobile/site_settings/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/site_settings/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/site_settings/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/site_settings/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/site_settings/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/site_settings/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/site_settings/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/site_settings/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/site_settings/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/templates/site_settings/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/templates/site_settings/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_site_settings/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_site_settings/types.py -------------------------------------------------------------------------------- /template/app/mod_statuses/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_statuses/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/controllers.py -------------------------------------------------------------------------------- /template/app/mod_statuses/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/forms.py -------------------------------------------------------------------------------- /template/app/mod_statuses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/models.py -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/mobile/statuses/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/mobile/statuses/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/mobile/statuses/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/mobile/statuses/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/mobile/statuses/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/mobile/statuses/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/mobile/statuses/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/mobile/statuses/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/mobile/statuses/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/mobile/statuses/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/statuses/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/statuses/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/statuses/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/statuses/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/statuses/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/statuses/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/statuses/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/statuses/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_statuses/templates/statuses/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/templates/statuses/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_statuses/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_statuses/types.py -------------------------------------------------------------------------------- /template/app/mod_tenancy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_tenancy/multi_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_tenancy/multi_bind.py -------------------------------------------------------------------------------- /template/app/mod_tenancy/multi_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_tenancy/multi_tenant.py -------------------------------------------------------------------------------- /template/app/mod_users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/app/mod_users/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_users/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/controllers.py -------------------------------------------------------------------------------- /template/app/mod_users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/forms.py -------------------------------------------------------------------------------- /template/app/mod_users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/models.py -------------------------------------------------------------------------------- /template/app/mod_users/templates/email/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/templates/email/activate.html -------------------------------------------------------------------------------- /template/app/mod_users/templates/email/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/templates/email/reset.html -------------------------------------------------------------------------------- /template/app/mod_users/templates/users/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/templates/users/forgot.html -------------------------------------------------------------------------------- /template/app/mod_users/templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/templates/users/login.html -------------------------------------------------------------------------------- /template/app/mod_users/templates/users/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/templates/users/profile.html -------------------------------------------------------------------------------- /template/app/mod_users/templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/templates/users/register.html -------------------------------------------------------------------------------- /template/app/mod_users/templates/users/unconfirmed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/templates/users/unconfirmed.html -------------------------------------------------------------------------------- /template/app/mod_users/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_users/types.py -------------------------------------------------------------------------------- /template/app/mod_web_hooks/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/api_controllers.py -------------------------------------------------------------------------------- /template/app/mod_web_hooks/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/controllers.py -------------------------------------------------------------------------------- /template/app/mod_web_hooks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/forms.py -------------------------------------------------------------------------------- /template/app/mod_web_hooks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/models.py -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/web_hooks/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/web_hooks/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/web_hooks/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/web_hooks/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/web_hooks/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/web_hooks/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/web_hooks/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/web_hooks/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/mobile/web_hooks/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/mobile/web_hooks/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/web_hooks/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/web_hooks/admin/create.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/web_hooks/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/web_hooks/admin/edit.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/web_hooks/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/web_hooks/admin/index.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/web_hooks/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/web_hooks/admin/show.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/templates/web_hooks/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/templates/web_hooks/public/public_list.html -------------------------------------------------------------------------------- /template/app/mod_web_hooks/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_web_hooks/types.py -------------------------------------------------------------------------------- /template/app/mod_workflow_manager/workflow_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/mod_workflow_manager/workflow_manager.py -------------------------------------------------------------------------------- /template/app/static/css/404_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/css/404_style.css -------------------------------------------------------------------------------- /template/app/static/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/css/adminlte.min.css -------------------------------------------------------------------------------- /template/app/static/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/css/adminlte.min.css.map -------------------------------------------------------------------------------- /template/app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /template/app/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /template/app/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/css/styles.css -------------------------------------------------------------------------------- /template/app/static/db_models/all_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/db_models/all_models.js -------------------------------------------------------------------------------- /template/app/static/db_models/all_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/db_models/all_models.json -------------------------------------------------------------------------------- /template/app/static/images/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/images/bars.svg -------------------------------------------------------------------------------- /template/app/static/images/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/images/icon-192.png -------------------------------------------------------------------------------- /template/app/static/images/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/images/icon-512.png -------------------------------------------------------------------------------- /template/app/static/images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/images/icon.icns -------------------------------------------------------------------------------- /template/app/static/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/images/icon.ico -------------------------------------------------------------------------------- /template/app/static/images/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/images/today.png -------------------------------------------------------------------------------- /template/app/static/images/tomorrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/images/tomorrow.png -------------------------------------------------------------------------------- /template/app/static/js/Message Encryption Brwoser (basic).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/Message Encryption Brwoser (basic).txt -------------------------------------------------------------------------------- /template/app/static/js/Message Encryption Brwoser failed).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/Message Encryption Brwoser failed).txt -------------------------------------------------------------------------------- /template/app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /template/app/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /template/app/static/js/helper_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/helper_functions.js -------------------------------------------------------------------------------- /template/app/static/js/immortal-db.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/immortal-db.min.js -------------------------------------------------------------------------------- /template/app/static/js/install_prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/install_prompt.js -------------------------------------------------------------------------------- /template/app/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/jquery.min.js -------------------------------------------------------------------------------- /template/app/static/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/jquery.min.map -------------------------------------------------------------------------------- /template/app/static/js/pwacompat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/pwacompat.min.js -------------------------------------------------------------------------------- /template/app/static/js/register_sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/register_sw.js -------------------------------------------------------------------------------- /template/app/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/script.js -------------------------------------------------------------------------------- /template/app/static/js/web_push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/web_push.js -------------------------------------------------------------------------------- /template/app/static/js/web_share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/js/web_share.js -------------------------------------------------------------------------------- /template/app/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/manifest.json -------------------------------------------------------------------------------- /template/app/static/menus/all_menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/menus/all_menus.js -------------------------------------------------------------------------------- /template/app/static/menus/all_menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/menus/all_menus.json -------------------------------------------------------------------------------- /template/app/static/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/static/sw.js -------------------------------------------------------------------------------- /template/app/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/403.html -------------------------------------------------------------------------------- /template/app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/404.html -------------------------------------------------------------------------------- /template/app/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/admin/index.html -------------------------------------------------------------------------------- /template/app/templates/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/errors/403.html -------------------------------------------------------------------------------- /template/app/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/errors/404.html -------------------------------------------------------------------------------- /template/app/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/errors/500.html -------------------------------------------------------------------------------- /template/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/index.html -------------------------------------------------------------------------------- /template/app/templates/legal/privacy_policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/legal/privacy_policy.html -------------------------------------------------------------------------------- /template/app/templates/legal/terms_of_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/legal/terms_of_use.html -------------------------------------------------------------------------------- /template/app/templates/macros/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/macros/flash.html -------------------------------------------------------------------------------- /template/app/templates/macros/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/macros/form.html -------------------------------------------------------------------------------- /template/app/templates/mobile/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/mobile/public/index.html -------------------------------------------------------------------------------- /template/app/templates/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/app/templates/public/index.html -------------------------------------------------------------------------------- /template/cli/bda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/cli/bda.py -------------------------------------------------------------------------------- /template/cli/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/cli/setup.py -------------------------------------------------------------------------------- /template/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/config.py -------------------------------------------------------------------------------- /template/create_all_models_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_all_models_json.py -------------------------------------------------------------------------------- /template/create_desktop_installer_lunix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_desktop_installer_lunix.py -------------------------------------------------------------------------------- /template/create_desktop_installer_mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_desktop_installer_mac.py -------------------------------------------------------------------------------- /template/create_desktop_installer_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_desktop_installer_windows.py -------------------------------------------------------------------------------- /template/create_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module.py -------------------------------------------------------------------------------- /template/create_module_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_json.py -------------------------------------------------------------------------------- /template/create_module_template/generated_config/models/xyz/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/generated_config/models/xyz/models.json -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/api_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/api_controllers.py -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/brokers/sql_alch_broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/brokers/sql_alch_broker.py -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/controllers.py -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/forms.py -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/models.py -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/service.py -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/mobile/xyz/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/mobile/xyz/admin/create.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/mobile/xyz/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/mobile/xyz/admin/edit.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/mobile/xyz/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/mobile/xyz/admin/index.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/mobile/xyz/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/mobile/xyz/admin/show.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/mobile/xyz/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/mobile/xyz/public/public_list.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/xyz/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/xyz/admin/create.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/xyz/admin/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/xyz/admin/edit.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/xyz/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/xyz/admin/index.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/xyz/admin/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/xyz/admin/show.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/templates/xyz/public/public_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/templates/xyz/public/public_list.html -------------------------------------------------------------------------------- /template/create_module_template/mod_xyz/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/create_module_template/mod_xyz/types.py -------------------------------------------------------------------------------- /template/databases/sqlite/default.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/databases/sqlite/default.db -------------------------------------------------------------------------------- /template/hooks/hooks-packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/hooks/hooks-packages.py -------------------------------------------------------------------------------- /template/logs/system/system.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/logs/system/system.log -------------------------------------------------------------------------------- /template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/package-lock.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/package.json -------------------------------------------------------------------------------- /template/requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/prod.txt -------------------------------------------------------------------------------- /template/requirements/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/requirements/common.txt -------------------------------------------------------------------------------- /template/requirements/custom_module_requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/requirements/dev.txt -------------------------------------------------------------------------------- /template/requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/requirements/prod.txt -------------------------------------------------------------------------------- /template/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/run.py -------------------------------------------------------------------------------- /template/run_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/run_desktop.py -------------------------------------------------------------------------------- /template/run_shared_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/run_shared_server.py -------------------------------------------------------------------------------- /template/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 -------------------------------------------------------------------------------- /template/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/serverless.yml -------------------------------------------------------------------------------- /template/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanJulyan/Flask-BDA/HEAD/template/setup.sh --------------------------------------------------------------------------------