Created
March 3, 2021 06:17
-
-
Save adibenc/00a250696cef727d0e677afff5055152 to your computer and use it in GitHub Desktop.
flask base structure, based on https://github.com/hack4impact/flask-base
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| ./.codeclimate.yml | |
| ./.vscode | |
| ./.vscode/settings.json | |
| ./app | |
| ./app/account | |
| ./app/account/forms.py | |
| ./app/account/views.py | |
| ./app/account/__init__.py | |
| ./app/admin | |
| ./app/admin/datatest | |
| ./app/admin/datatest/forms.py | |
| ./app/admin/datatest/views.py | |
| ./app/admin/datatest/__init__.py | |
| ./app/admin/forms.py | |
| ./app/admin/views.py | |
| ./app/admin/__init__.py | |
| ./app/assets | |
| ./app/assets/scripts | |
| ./app/assets/scripts/app.js | |
| ./app/assets/scripts/vendor | |
| ./app/assets/scripts/vendor/jquery.min.js | |
| ./app/assets/scripts/vendor/semantic.min.js | |
| ./app/assets/scripts/vendor/tablesort.min.js | |
| ./app/assets/scripts/vendor/zxcvbn.js | |
| ./app/assets/styles | |
| ./app/assets/styles/app.scss | |
| ./app/assets/styles/vendor | |
| ./app/assets/styles/vendor/semantic.min.css | |
| ./app/assets.py | |
| ./app/decorators.py | |
| ./app/email.py | |
| ./app/main | |
| ./app/main/errors.py | |
| ./app/main/forms.py | |
| ./app/main/views.py | |
| ./app/main/__init__.py | |
| ./app/models | |
| ./app/models/datatest.py | |
| ./app/models/miscellaneous.py | |
| ./app/models/user.py | |
| ./app/models/__init__.py | |
| ./app/repositories | |
| ./app/repositories/BaseRepository.py | |
| ./app/repositories/DatatestRepository.py | |
| ./app/repositories/__init__.py | |
| ./app/templates | |
| ./app/templates/account | |
| ./app/templates/account/email | |
| ./app/templates/account/email/change_email.html | |
| ./app/templates/account/email/change_email.txt | |
| ./app/templates/account/email/confirm.html | |
| ./app/templates/account/email/confirm.txt | |
| ./app/templates/account/email/invite.html | |
| ./app/templates/account/email/invite.txt | |
| ./app/templates/account/email/reset_password.html | |
| ./app/templates/account/email/reset_password.txt | |
| ./app/templates/account/join_invite.html | |
| ./app/templates/account/login.html | |
| ./app/templates/account/manage.html | |
| ./app/templates/account/register.html | |
| ./app/templates/account/reset_password.html | |
| ./app/templates/account/unconfirmed.html | |
| ./app/templates/admin | |
| ./app/templates/admin/index.html | |
| ./app/templates/admin/manage_user.html | |
| ./app/templates/admin/new_user.html | |
| ./app/templates/admin/registered_users.html | |
| ./app/templates/errors | |
| ./app/templates/errors/403.html | |
| ./app/templates/errors/404.html | |
| ./app/templates/errors/500.html | |
| ./app/templates/layouts | |
| ./app/templates/layouts/base.html | |
| ./app/templates/macros | |
| ./app/templates/macros/button_macros.html | |
| ./app/templates/macros/check_password.html | |
| ./app/templates/macros/form_macros.html | |
| ./app/templates/macros/nav_macros.html | |
| ./app/templates/macros/page_macros.html | |
| ./app/templates/main | |
| ./app/templates/main/about.html | |
| ./app/templates/main/index.html | |
| ./app/templates/master | |
| ./app/templates/master/datatest | |
| ./app/templates/master/datatest/add-edit.html | |
| ./app/templates/master/datatest/index.html | |
| ./app/templates/partials | |
| ./app/templates/partials/_flashes.html | |
| ./app/templates/partials/_head.html | |
| ./app/utils.py | |
| ./app/__init__.py | |
| ./app.json | |
| ./circle.yml | |
| ./CONDUCT.md | |
| ./config.env | |
| ./config.env.example | |
| ./config.py | |
| ./data-dev.sqlite | |
| ./docker-compose.yml | |
| ./Dockerfile | |
| ./Dockerfile.worker | |
| ./docs | |
| ./docs/account.md | |
| ./docs/analytics.md | |
| ./docs/assets.md | |
| ./docs/config.md | |
| ./docs/deploy.md | |
| ./docs/index.md | |
| ./docs/init.md | |
| ./docs/manage_commands.md | |
| ./docs/models.md | |
| ./docs/setup.md | |
| ./docs/templates.md | |
| ./dummy | |
| ./dummy/datatest | |
| ./dummy/datatest/forms.py | |
| ./dummy/datatest/views.py | |
| ./dummy/datatest/__init__.py | |
| ./dummy/dump1 | |
| ./dummy/parsePostReq | |
| ./init_database.sh | |
| ./LICENSE.md | |
| ./Local | |
| ./manage.py | |
| ./migrations | |
| ./migrations/alembic.ini | |
| ./migrations/env.py | |
| ./migrations/README | |
| ./migrations/script.py.mako | |
| ./migrations/versions | |
| ./migrations/versions/aa5c1a1ca615_.py | |
| ./mkdocs.yml | |
| ./pro.sub | |
| ./pro.sub.d | |
| ./Procfile | |
| ./README.md | |
| ./readme_media | |
| ./readme_media/adduser.gif | |
| ./readme_media/admin.gif | |
| ./readme_media/editpage.gif | |
| ./readme_media/edituser.gif | |
| ./readme_media/home.gif | |
| ./readme_media/logo.png | |
| ./readme_media/logo@2x.png | |
| ./readme_media/register.gif | |
| ./requirements.txt | |
| ./runtime.txt | |
| ./tests | |
| ./tests/test_basics.py | |
| ./tests/test_user_model.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| ./.vscode | |
| ./app | |
| ./app/account | |
| ./app/account/__pycache__ | |
| ./app/admin | |
| ./app/admin/datatest | |
| ./app/admin/datatest/__pycache__ | |
| ./app/admin/__pycache__ | |
| ./app/assets | |
| ./app/assets/scripts | |
| ./app/assets/scripts/vendor | |
| ./app/assets/styles | |
| ./app/assets/styles/vendor | |
| ./app/main | |
| ./app/main/__pycache__ | |
| ./app/models | |
| ./app/models/__pycache__ | |
| ./app/repositories | |
| ./app/repositories/__pycache__ | |
| ./app/static | |
| ./app/static/.webassets-cache | |
| ./app/static/ckeditor | |
| ./app/static/ckeditor/adapters | |
| ./app/static/ckeditor/lang | |
| ./app/static/ckeditor/plugins | |
| ./app/static/ckeditor/plugins/a11yhelp | |
| ./app/static/ckeditor/plugins/a11yhelp/dialogs | |
| ./app/static/ckeditor/plugins/a11yhelp/dialogs/lang | |
| ./app/static/ckeditor/plugins/about | |
| ./app/static/ckeditor/plugins/about/dialogs | |
| ./app/static/ckeditor/plugins/about/dialogs/hidpi | |
| ./app/static/ckeditor/plugins/clipboard | |
| ./app/static/ckeditor/plugins/clipboard/dialogs | |
| ./app/static/ckeditor/plugins/dialog | |
| ./app/static/ckeditor/plugins/image | |
| ./app/static/ckeditor/plugins/image/dialogs | |
| ./app/static/ckeditor/plugins/image/images | |
| ./app/static/ckeditor/plugins/link | |
| ./app/static/ckeditor/plugins/link/dialogs | |
| ./app/static/ckeditor/plugins/link/images | |
| ./app/static/ckeditor/plugins/link/images/hidpi | |
| ./app/static/ckeditor/plugins/magicline | |
| ./app/static/ckeditor/plugins/magicline/images | |
| ./app/static/ckeditor/plugins/magicline/images/hidpi | |
| ./app/static/ckeditor/plugins/pastefromword | |
| ./app/static/ckeditor/plugins/pastefromword/filter | |
| ./app/static/ckeditor/plugins/scayt | |
| ./app/static/ckeditor/plugins/scayt/dialogs | |
| ./app/static/ckeditor/plugins/specialchar | |
| ./app/static/ckeditor/plugins/specialchar/dialogs | |
| ./app/static/ckeditor/plugins/specialchar/dialogs/lang | |
| ./app/static/ckeditor/plugins/table | |
| ./app/static/ckeditor/plugins/table/dialogs | |
| ./app/static/ckeditor/plugins/tabletools | |
| ./app/static/ckeditor/plugins/tabletools/dialogs | |
| ./app/static/ckeditor/plugins/wsc | |
| ./app/static/ckeditor/plugins/wsc/dialogs | |
| ./app/static/ckeditor/skins | |
| ./app/static/ckeditor/skins/flat | |
| ./app/static/ckeditor/skins/flat/images | |
| ./app/static/ckeditor/skins/flat/images/hidpi | |
| ./app/static/fonts | |
| ./app/static/fonts/vendor | |
| ./app/static/fonts/vendor/semantic | |
| ./app/static/images | |
| ./app/static/images/vendor | |
| ./app/static/images/vendor/semantic | |
| ./app/static/styles | |
| ./app/static/webassets-external | |
| ./app/templates | |
| ./app/templates/account | |
| ./app/templates/account/email | |
| ./app/templates/admin | |
| ./app/templates/errors | |
| ./app/templates/layouts | |
| ./app/templates/macros | |
| ./app/templates/main | |
| ./app/templates/master | |
| ./app/templates/master/datatest | |
| ./app/templates/partials | |
| ./app/__pycache__ | |
| ./docs | |
| ./dummy | |
| ./dummy/datatest | |
| ./dummy/datatest/__pycache__ | |
| ./migrations | |
| ./migrations/versions | |
| ./migrations/versions/__pycache__ | |
| ./migrations/__pycache__ | |
| ./readme_media | |
| ./tests | |
| ./__pycache__ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment