falco-cli 0.22.0__tar.gz → 0.22.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.all-contributorsrc +9 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.editorconfig +1 -1
- falco_cli-0.22.2/.github/workflows/ci.yml +30 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.github/workflows/publish.yml +6 -11
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.gitmodules +3 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.pre-commit-config.yaml +12 -5
- falco_cli-0.22.2/.readthedocs.yaml +34 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/PKG-INFO +19 -12
- {falco_cli-0.22.0 → falco_cli-0.22.2}/README.md +17 -11
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/.git +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/.github/workflows/ci.yml +75 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/.github/workflows/pre-commit-auto-update.yml +44 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/LICENSE +21 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/README.md +10 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/cookiecutter.json +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.editorconfig +27 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.env.template +15 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.gitignore +140 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +60 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/README.md +46 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/Dockerfile +51 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/manage.py +23 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/pyproject.toml +184 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +391 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +33 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.git +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.github/workflows/ci.yml +75 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.github/workflows/pre-commit-auto-update.yml +44 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.gitignore +140 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/LICENSE +21 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/README.md +15 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/cookiecutter.json +9 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.editorconfig +27 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.env.template +15 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.gitignore +140 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +60 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/README.md +46 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/create.html.jinja +21 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/detail.html.jinja +27 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/list.html.jinja +102 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/update.html.jinja +24 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/Dockerfile +49 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/dependencies.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/dependencies.d/base +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/server +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/worker +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/dependencies.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/manage.py +23 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/pyproject.toml +186 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/tests/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +391 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/css/style.css +16 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/account_inactive.html +13 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/base.html +25 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/email.html +80 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/email_confirm.html +29 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/login.html +54 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/logout.html +22 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_change.html +20 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_reset.html +30 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_reset_done.html +19 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_reset_from_key.html +38 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_reset_from_key_done.html +13 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_set.html +23 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/signup.html +29 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/signup_closed.html +13 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/verification_sent.html +15 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/verified_email_required.html +26 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +128 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +20 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/.git +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/.github/workflows/ci.yml +75 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/.github/workflows/pre-commit-auto-update.yml +44 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/LICENSE +21 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/README.md +10 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/cookiecutter.json +9 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.editorconfig +27 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.env.template +15 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.gitignore +140 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +50 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/README.md +46 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/create.html.jinja +19 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/detail.html.jinja +27 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/list.html.jinja +97 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/update.html.jinja +23 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/Dockerfile +49 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/dependencies.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/dependencies.d/base +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/server +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/worker +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/dependencies.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/manage.py +23 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/pyproject.toml +184 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/tests/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +383 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/base_entrance.html +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/base_manage.html +1 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +35 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +6 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
- falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
- falco_cli-0.22.2/blueprints/falco_twind/.git +1 -0
- falco_cli-0.22.2/blueprints/falco_twind/.github/workflows/ci.yml +75 -0
- falco_cli-0.22.2/blueprints/falco_twind/.github/workflows/pre-commit-auto-update.yml +44 -0
- falco_cli-0.22.2/blueprints/falco_twind/LICENSE +21 -0
- falco_cli-0.22.2/blueprints/falco_twind/README.md +10 -0
- falco_cli-0.22.2/blueprints/falco_twind/cookiecutter.json +6 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.editorconfig +27 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.env.template +15 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.gitignore +140 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +60 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/README.md +46 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/Dockerfile +51 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/dependencies.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/dependencies.d/base +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/server +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/worker +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/dependencies.d/setup +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/manage.py +23 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/pyproject.toml +184 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/tests/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +391 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +33 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +6 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
- falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
- falco_cli-0.22.2/demo/config/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/core/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/orders/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/orders/migrations/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/products/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/products/migrations/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/users/__init__.py +0 -0
- falco_cli-0.22.2/demo/demo/users/migrations/__init__.py +0 -0
- falco_cli-0.22.2/demo/pyproject.toml +13 -0
- falco_cli-0.22.2/docs/_templates/components/nav-versions.html +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/conf.py +13 -4
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/index.rst +13 -7
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/install.rst +4 -2
- falco_cli-0.22.0/requirements/requirements-docs.txt → falco_cli-0.22.2/docs/requirements.txt +179 -45
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/crud.rst +9 -7
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/index.rst +0 -1
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/packages.rst +1 -1
- falco_cli-0.22.2/justfile +111 -0
- falco_cli-0.22.2/pyproject.toml +257 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/requirements.txt +66 -15
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/__about__.py +1 -1
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/model_crud.py +2 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/reset_migrations.py +2 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/list.html.jinja +2 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/utils/utils.py.jinja +1 -1
- falco_cli-0.22.2/tests/__init__.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_start_project.py +26 -27
- falco_cli-0.22.0/.github/workflows/documentation.yml +0 -57
- falco_cli-0.22.0/bump.sh +0 -46
- falco_cli-0.22.0/demo/pyproject.toml +0 -5
- falco_cli-0.22.0/docs/_templates/partials/globaltoc-above.html +0 -17
- falco_cli-0.22.0/pyproject.toml +0 -176
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.github/workflows/pre-commit-auto-update.yml +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.gitignore +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/.vscode/settings.json +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/CODE_OF_CONDUCT.md +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/LICENSE +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/all-contributorsrc +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/assets/falco-logo.png +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/assets/falco-logo.svg +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/assets/og-image.jpg +0 -0
- /falco_cli-0.22.0/demo/config/__init__.py → /falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/dependencies.d/setup +0 -0
- /falco_cli-0.22.0/demo/demo/__init__.py → /falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/dependencies.d/base +0 -0
- /falco_cli-0.22.0/demo/demo/core/__init__.py → /falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/server +0 -0
- /falco_cli-0.22.0/demo/demo/orders/__init__.py → /falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/setup +0 -0
- /falco_cli-0.22.0/demo/demo/orders/migrations/__init__.py → /falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/worker +0 -0
- /falco_cli-0.22.0/demo/demo/products/__init__.py → /falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/dependencies.d/setup +0 -0
- {falco_cli-0.22.0/demo/demo/products/migrations → falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/tests}/__init__.py +0 -0
- {falco_cli-0.22.0/demo/demo/users → falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}}/__init__.py +0 -0
- {falco_cli-0.22.0/demo/demo/users/migrations → falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core}/__init__.py +0 -0
- {falco_cli-0.22.0/tests → falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users}/__init__.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/asgi.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/settings.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/urls.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/wsgi.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/core/apps.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/core/types.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/core/utils.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/apps.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0001_initial.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0002_order_created.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0003_order_completed_order_image_order_receipt.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0004_alter_order_completed.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/models.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/admin.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/apps.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/forms.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/migrations/0001_initial.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/models.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/tests.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/urls.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/views.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/admin.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/apps.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/migrations/0001_initial.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/models.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/manage.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/requirements.txt +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/base.html +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_create.html +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_detail.html +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_list.html +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_update.html +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/.rich-codex.yml +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/Makefile +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/_static/add-og-title-to-home.js +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/_static/custom.css +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/changelog.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/codeofconduct.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/contributing.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/avoiding_god_models.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/database_tips.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/deployment.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/dynamic_model_schema.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/index.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/interactive_user_interfaces.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/logging_and_monitoring.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/multitenancy.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/optimizing_database_access.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/permissions_and_authorization.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/realtime.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/running_project_in_a_container.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/task_queues_and_schedulers.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/tips_and_extra.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/use_sqlite_in_production.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/writing_async_code.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/writing_documentation.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/writing_tests.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/deployment.png +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/logo_with_text.svg +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/project-tree.svg +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/task_queue.png +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/license.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/make.bat +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/htmx.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/index.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/migrations.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_app.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/dependency.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/deploy.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/issues.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/structure.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/sync_dotenv.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/usage.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/work.rst +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/scripts/project_tree.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/scripts/update_readme_guides.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/__init__.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/__main__.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/checks.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/__init__.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/__init__.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/install_crud_utils.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/utils.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/htmx.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/htmx_extension.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/rm_migrations.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/start_app.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/start_project.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/sync_dotenv.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/work.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/config.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/create.html.jinja +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/detail.html.jinja +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/update.html.jinja +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/python/forms.py.jinja +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/python/views.py.jinja +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/utils/types.py.jinja +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/utils.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_crud.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_htmx.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_htmx_extension.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_install_crud_utils.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_reset_migrations.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_rm_migrations.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_start_app.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_sync_dotenv.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_work.py +0 -0
- {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/conftest.py +0 -0
|
@@ -62,6 +62,15 @@
|
|
|
62
62
|
"contributions": [
|
|
63
63
|
"financial"
|
|
64
64
|
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"login": "lepture",
|
|
68
|
+
"name": "Hsiaoming Yang",
|
|
69
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/290496?v=4",
|
|
70
|
+
"profile": "https://lepture.com",
|
|
71
|
+
"contributions": [
|
|
72
|
+
"bug"
|
|
73
|
+
]
|
|
65
74
|
}
|
|
66
75
|
],
|
|
67
76
|
"contributorsPerLine": 7,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on: [ push, pull_request, workflow_dispatch ]
|
|
4
|
+
|
|
5
|
+
permissions:
|
|
6
|
+
contents: write
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
matrix:
|
|
13
|
+
python-version: [ "3.10", "3.11", "3.12" ]
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
with:
|
|
17
|
+
submodules: recursive
|
|
18
|
+
token: ${{ secrets.PAT }}
|
|
19
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
20
|
+
uses: actions/setup-python@v5
|
|
21
|
+
with:
|
|
22
|
+
python-version: ${{ matrix.python-version }}
|
|
23
|
+
cache: pip
|
|
24
|
+
cache-dependency-path: '**/pyproject.toml'
|
|
25
|
+
- name: Install hatch
|
|
26
|
+
run: |
|
|
27
|
+
pip install hatch
|
|
28
|
+
- name: Run tests
|
|
29
|
+
run: |
|
|
30
|
+
hatch run pytest
|
|
@@ -14,15 +14,13 @@ jobs:
|
|
|
14
14
|
- uses: actions/checkout@v4
|
|
15
15
|
with:
|
|
16
16
|
submodules: recursive
|
|
17
|
+
token: ${{ secrets.PAT }}
|
|
17
18
|
- name: Set up Python ${{ matrix.python-version }}
|
|
18
19
|
uses: actions/setup-python@v5
|
|
19
20
|
with:
|
|
20
21
|
python-version: ${{ matrix.python-version }}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- name: Install hatch
|
|
24
|
-
run: |
|
|
25
|
-
pip install hatch
|
|
22
|
+
- name: Install Hatch
|
|
23
|
+
uses: pypa/hatch@install
|
|
26
24
|
- name: Run tests
|
|
27
25
|
run: |
|
|
28
26
|
hatch run pytest
|
|
@@ -37,12 +35,9 @@ jobs:
|
|
|
37
35
|
- name: Set up Python
|
|
38
36
|
uses: actions/setup-python@v5
|
|
39
37
|
with:
|
|
40
|
-
python-version: '3.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
- name: Install hatch
|
|
44
|
-
run: |
|
|
45
|
-
pip install hatch
|
|
38
|
+
python-version: '3.12'
|
|
39
|
+
- name: Install Hatch
|
|
40
|
+
uses: pypa/hatch@install
|
|
46
41
|
- name: Build
|
|
47
42
|
run: |
|
|
48
43
|
hatch build
|
|
@@ -7,3 +7,6 @@
|
|
|
7
7
|
[submodule "blueprints/falco_blueprint_basic_pico"]
|
|
8
8
|
path = blueprints/falco_blueprint_basic_pico
|
|
9
9
|
url = git@github.com:Tobi-De/falco_blueprint_basic_pico.git
|
|
10
|
+
[submodule "blueprints/falco_twind"]
|
|
11
|
+
path = blueprints/falco_twind
|
|
12
|
+
url = git@github.com:Tobi-De/falco_twind.git
|
|
@@ -28,8 +28,15 @@ repos:
|
|
|
28
28
|
args:
|
|
29
29
|
- "--application-directories=falco"
|
|
30
30
|
|
|
31
|
-
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
# - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
|
|
32
|
+
# rev: v2.13.0
|
|
33
|
+
# hooks:
|
|
34
|
+
# - id: pretty-format-toml
|
|
35
|
+
# args: [ --autofix , --indent, '4' ]
|
|
36
|
+
|
|
37
|
+
# - repo: https://github.com/tox-dev/pyproject-fmt
|
|
38
|
+
# rev: "2.1.3"
|
|
39
|
+
# hooks:
|
|
40
|
+
# - id: pyproject-fmt
|
|
41
|
+
# args: ["pyproject.toml"]
|
|
42
|
+
# exclude: ^(blueprints/|demo/)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Read the Docs configuration file for Sphinx projects
|
|
2
|
+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
3
|
+
|
|
4
|
+
# Required
|
|
5
|
+
version: 2
|
|
6
|
+
|
|
7
|
+
# Set the OS, Python version and other tools you might need
|
|
8
|
+
build:
|
|
9
|
+
os: ubuntu-22.04
|
|
10
|
+
tools:
|
|
11
|
+
python: "3.12"
|
|
12
|
+
|
|
13
|
+
# Build documentation in the "docs/" directory with Sphinx
|
|
14
|
+
sphinx:
|
|
15
|
+
configuration: docs/conf.py
|
|
16
|
+
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
|
|
17
|
+
# builder: "dirhtml"
|
|
18
|
+
# Fail on all warnings to avoid broken references
|
|
19
|
+
# fail_on_warning: true
|
|
20
|
+
|
|
21
|
+
# Optionally build your docs in additional formats such as PDF and ePub
|
|
22
|
+
# formats:
|
|
23
|
+
# - pdf
|
|
24
|
+
# - epub
|
|
25
|
+
|
|
26
|
+
# Optional but recommended, declare the Python requirements required
|
|
27
|
+
# to build your documentation
|
|
28
|
+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
|
|
29
|
+
python:
|
|
30
|
+
install:
|
|
31
|
+
- requirements: docs/requirements.txt
|
|
32
|
+
# Install our python package before building the docs
|
|
33
|
+
- method: pip
|
|
34
|
+
path: .
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: falco-cli
|
|
3
|
-
Version: 0.22.
|
|
3
|
+
Version: 0.22.2
|
|
4
4
|
Summary: Enhance your Django developer experience: CLI and Guides for the Modern Developer.
|
|
5
5
|
Project-URL: Documentation, https://falco.oluwatobi.dev/
|
|
6
6
|
Project-URL: Homepage, https://falco.oluwatobi.dev/
|
|
@@ -19,6 +19,7 @@ Classifier: Framework :: Django :: 5.0
|
|
|
19
19
|
Classifier: Intended Audience :: Developers
|
|
20
20
|
Classifier: Natural Language :: English
|
|
21
21
|
Classifier: Programming Language :: Python
|
|
22
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
22
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -47,8 +48,9 @@ Description-Content-Type: text/markdown
|
|
|
47
48
|
<p>An opinionated toolkit for a modern Django development experience</p>
|
|
48
49
|
</h1>
|
|
49
50
|
|
|
50
|
-
[](https://github.com/Tobi-De/falco/actions/workflows/ci.yml)
|
|
51
52
|
[](https://github.com/Tobi-De/falco/actions/workflows/publish.yml)
|
|
53
|
+
[](https://beta.readthedocs.org/projects/falco-cli/builds/?version=latest)
|
|
52
54
|
[](https://pypi.org/project/falco-cli/)
|
|
53
55
|
[](https://github.com/pypa/hatch)
|
|
54
56
|
[](https://github.com/astral-sh/ruff)
|
|
@@ -64,6 +66,16 @@ Falco is a Django-centric toolkit designed to enhance the development experience
|
|
|
64
66
|
|
|
65
67
|
<!-- [](https://falco.oluwatobi.dev) -->
|
|
66
68
|
|
|
69
|
+
## Templates
|
|
70
|
+
|
|
71
|
+
- [tailwind](https://github.com/Tobi-De/falco_blueprint_basic) (default)
|
|
72
|
+
- [bootstrap](https://github.com/Tobi-De/falco_blueprint_basic_bootstrap)
|
|
73
|
+
- [pico](https://github.com/Tobi-De/falco_blueprint_basic_pico)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Features
|
|
77
|
+
|
|
78
|
+
|
|
67
79
|
|
|
68
80
|
## The CLI
|
|
69
81
|
|
|
@@ -88,12 +100,6 @@ pip install falco-cli
|
|
|
88
100
|
- [rm-migrations](https://falco.oluwatobi.dev/the_cli/migrations.html): Remove all migrations for the specified applications directory. (development only)
|
|
89
101
|
- [reset-migrations](https://falco.oluwatobi.dev/the_cli/migrations.html#reset-migrations): Delete and recreate all migrations. (development only)
|
|
90
102
|
|
|
91
|
-
**Templates**
|
|
92
|
-
|
|
93
|
-
- [tailwind](https://github.com/Tobi-De/falco_blueprint_basic) (default)
|
|
94
|
-
- [bootstrap](https://github.com/Tobi-De/falco_blueprint_basic_bootstrap)
|
|
95
|
-
- [pico](https://github.com/Tobi-De/falco_blueprint_basic_pico)
|
|
96
|
-
|
|
97
103
|
## The guides
|
|
98
104
|
|
|
99
105
|
> [!NOTE]
|
|
@@ -140,13 +146,13 @@ Falco is inspired by (and borrows elements from) some excellent open source proj
|
|
|
140
146
|
- [django-twc-project](https://github.com/westerveltco/django-twc-project)
|
|
141
147
|
|
|
142
148
|
## Contributors
|
|
143
|
-
<!-- contributors:start -->
|
|
144
|
-
Thanks to the following wonderful people [emoji key](https://allcontributors.org/docs/en/emoji-key) who have helped build `falco`.
|
|
145
|
-
|
|
146
149
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
147
|
-
[](#contributors-)
|
|
148
151
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
149
152
|
|
|
153
|
+
<!-- contributors:start -->
|
|
154
|
+
Thanks to the following wonderful people [emoji key](https://allcontributors.org/docs/en/emoji-key) who have helped build `falco`.
|
|
155
|
+
|
|
150
156
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
151
157
|
<!-- prettier-ignore-start -->
|
|
152
158
|
<!-- markdownlint-disable -->
|
|
@@ -159,6 +165,7 @@ Thanks to the following wonderful people [emoji key](https://allcontributors.org
|
|
|
159
165
|
<td align="center" valign="top" width="14.28%"><a href="http://mainlydata.kubadev.com"><img src="https://avatars.githubusercontent.com/u/403435?v=4?s=100" width="100px;" alt="Richard Shea"/><br /><sub><b>Richard Shea</b></sub></a><br /><a href="https://github.com/Tobi-De/falco/commits?author=shearichard" title="Documentation">📖</a></td>
|
|
160
166
|
<td align="center" valign="top" width="14.28%"><a href="https://lexumsoft.com/"><img src="https://avatars.githubusercontent.com/u/96701299?v=4?s=100" width="100px;" alt="Waqar Khan"/><br /><sub><b>Waqar Khan</b></sub></a><br /><a href="https://github.com/Tobi-De/falco/commits?author=786raees" title="Code">💻</a></td>
|
|
161
167
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tissieres"><img src="https://avatars.githubusercontent.com/u/2410978?v=4?s=100" width="100px;" alt="tissieres"/><br /><sub><b>tissieres</b></sub></a><br /><a href="#financial-tissieres" title="Financial">💵</a></td>
|
|
168
|
+
<td align="center" valign="top" width="14.28%"><a href="https://lepture.com"><img src="https://avatars.githubusercontent.com/u/290496?v=4?s=100" width="100px;" alt="Hsiaoming Yang"/><br /><sub><b>Hsiaoming Yang</b></sub></a><br /><a href="https://github.com/Tobi-De/falco/issues?q=author%3Alepture" title="Bug reports">🐛</a></td>
|
|
162
169
|
</tr>
|
|
163
170
|
</tbody>
|
|
164
171
|
</table>
|
|
@@ -7,8 +7,9 @@
|
|
|
7
7
|
<p>An opinionated toolkit for a modern Django development experience</p>
|
|
8
8
|
</h1>
|
|
9
9
|
|
|
10
|
-
[](https://github.com/Tobi-De/falco/actions/workflows/ci.yml)
|
|
11
11
|
[](https://github.com/Tobi-De/falco/actions/workflows/publish.yml)
|
|
12
|
+
[](https://beta.readthedocs.org/projects/falco-cli/builds/?version=latest)
|
|
12
13
|
[](https://pypi.org/project/falco-cli/)
|
|
13
14
|
[](https://github.com/pypa/hatch)
|
|
14
15
|
[](https://github.com/astral-sh/ruff)
|
|
@@ -24,6 +25,16 @@ Falco is a Django-centric toolkit designed to enhance the development experience
|
|
|
24
25
|
|
|
25
26
|
<!-- [](https://falco.oluwatobi.dev) -->
|
|
26
27
|
|
|
28
|
+
## Templates
|
|
29
|
+
|
|
30
|
+
- [tailwind](https://github.com/Tobi-De/falco_blueprint_basic) (default)
|
|
31
|
+
- [bootstrap](https://github.com/Tobi-De/falco_blueprint_basic_bootstrap)
|
|
32
|
+
- [pico](https://github.com/Tobi-De/falco_blueprint_basic_pico)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### Features
|
|
36
|
+
|
|
37
|
+
|
|
27
38
|
|
|
28
39
|
## The CLI
|
|
29
40
|
|
|
@@ -48,12 +59,6 @@ pip install falco-cli
|
|
|
48
59
|
- [rm-migrations](https://falco.oluwatobi.dev/the_cli/migrations.html): Remove all migrations for the specified applications directory. (development only)
|
|
49
60
|
- [reset-migrations](https://falco.oluwatobi.dev/the_cli/migrations.html#reset-migrations): Delete and recreate all migrations. (development only)
|
|
50
61
|
|
|
51
|
-
**Templates**
|
|
52
|
-
|
|
53
|
-
- [tailwind](https://github.com/Tobi-De/falco_blueprint_basic) (default)
|
|
54
|
-
- [bootstrap](https://github.com/Tobi-De/falco_blueprint_basic_bootstrap)
|
|
55
|
-
- [pico](https://github.com/Tobi-De/falco_blueprint_basic_pico)
|
|
56
|
-
|
|
57
62
|
## The guides
|
|
58
63
|
|
|
59
64
|
> [!NOTE]
|
|
@@ -100,13 +105,13 @@ Falco is inspired by (and borrows elements from) some excellent open source proj
|
|
|
100
105
|
- [django-twc-project](https://github.com/westerveltco/django-twc-project)
|
|
101
106
|
|
|
102
107
|
## Contributors
|
|
103
|
-
<!-- contributors:start -->
|
|
104
|
-
Thanks to the following wonderful people [emoji key](https://allcontributors.org/docs/en/emoji-key) who have helped build `falco`.
|
|
105
|
-
|
|
106
108
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
107
|
-
[](#contributors-)
|
|
108
110
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
109
111
|
|
|
112
|
+
<!-- contributors:start -->
|
|
113
|
+
Thanks to the following wonderful people [emoji key](https://allcontributors.org/docs/en/emoji-key) who have helped build `falco`.
|
|
114
|
+
|
|
110
115
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
111
116
|
<!-- prettier-ignore-start -->
|
|
112
117
|
<!-- markdownlint-disable -->
|
|
@@ -119,6 +124,7 @@ Thanks to the following wonderful people [emoji key](https://allcontributors.org
|
|
|
119
124
|
<td align="center" valign="top" width="14.28%"><a href="http://mainlydata.kubadev.com"><img src="https://avatars.githubusercontent.com/u/403435?v=4?s=100" width="100px;" alt="Richard Shea"/><br /><sub><b>Richard Shea</b></sub></a><br /><a href="https://github.com/Tobi-De/falco/commits?author=shearichard" title="Documentation">📖</a></td>
|
|
120
125
|
<td align="center" valign="top" width="14.28%"><a href="https://lexumsoft.com/"><img src="https://avatars.githubusercontent.com/u/96701299?v=4?s=100" width="100px;" alt="Waqar Khan"/><br /><sub><b>Waqar Khan</b></sub></a><br /><a href="https://github.com/Tobi-De/falco/commits?author=786raees" title="Code">💻</a></td>
|
|
121
126
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tissieres"><img src="https://avatars.githubusercontent.com/u/2410978?v=4?s=100" width="100px;" alt="tissieres"/><br /><sub><b>tissieres</b></sub></a><br /><a href="#financial-tissieres" title="Financial">💵</a></td>
|
|
127
|
+
<td align="center" valign="top" width="14.28%"><a href="https://lepture.com"><img src="https://avatars.githubusercontent.com/u/290496?v=4?s=100" width="100px;" alt="Hsiaoming Yang"/><br /><sub><b>Hsiaoming Yang</b></sub></a><br /><a href="https://github.com/Tobi-De/falco/issues?q=author%3Alepture" title="Bug reports">🐛</a></td>
|
|
122
128
|
</tr>
|
|
123
129
|
</tbody>
|
|
124
130
|
</table>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gitdir: ../../.git/modules/blueprints/falco_blueprint_basic
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches: ['master', 'main']
|
|
6
|
+
|
|
7
|
+
push:
|
|
8
|
+
branches: ['master', 'main']
|
|
9
|
+
|
|
10
|
+
workflow_dispatch:
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
create-project:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Set up Python
|
|
18
|
+
uses: actions/setup-python@v5
|
|
19
|
+
with:
|
|
20
|
+
python-version: '3.12'
|
|
21
|
+
|
|
22
|
+
- name: Install falco
|
|
23
|
+
run: |
|
|
24
|
+
pip install falco-cli --pre
|
|
25
|
+
|
|
26
|
+
- name: Checkout Code Repository
|
|
27
|
+
uses: actions/checkout@v4
|
|
28
|
+
|
|
29
|
+
# - name: Debugging with ssh
|
|
30
|
+
# uses: lhotari/action-upterm@v1
|
|
31
|
+
|
|
32
|
+
- name: Generate a project
|
|
33
|
+
run: falco start-project test-project -b . --skip-new-version-check
|
|
34
|
+
working-directory: ./
|
|
35
|
+
|
|
36
|
+
- name: Install hatch
|
|
37
|
+
run: |
|
|
38
|
+
pip install hatch
|
|
39
|
+
|
|
40
|
+
- name: Run django checks
|
|
41
|
+
run: |
|
|
42
|
+
cd test_project && hatch run python manage.py check --fail-level WARNING
|
|
43
|
+
|
|
44
|
+
build-image:
|
|
45
|
+
runs-on: ubuntu-latest
|
|
46
|
+
steps:
|
|
47
|
+
- name: Checkout Code Repository
|
|
48
|
+
uses: actions/checkout@v4
|
|
49
|
+
|
|
50
|
+
- name: Set up Docker Buildx
|
|
51
|
+
uses: docker/setup-buildx-action@v3.0.0
|
|
52
|
+
|
|
53
|
+
- name: Install falco
|
|
54
|
+
run: |
|
|
55
|
+
pip install falco-cli --pre
|
|
56
|
+
|
|
57
|
+
- name: Install hatch
|
|
58
|
+
run: |
|
|
59
|
+
pip install hatch
|
|
60
|
+
|
|
61
|
+
- name: Generate a project
|
|
62
|
+
run: falco start-project test-project -b . --skip-new-version-check
|
|
63
|
+
working-directory: ./
|
|
64
|
+
|
|
65
|
+
- name: Generate requirements.txt
|
|
66
|
+
run: |
|
|
67
|
+
cd test_project
|
|
68
|
+
hatch run python --version
|
|
69
|
+
|
|
70
|
+
- name: Build image
|
|
71
|
+
run: |
|
|
72
|
+
cd test_project
|
|
73
|
+
docker build . -f deploy/Dockerfile
|
|
74
|
+
|
|
75
|
+
|
falco_cli-0.22.2/blueprints/falco_blueprint_basic/.github/workflows/pre-commit-auto-update.yml
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Run pre-commit autoupdate every day at midnight
|
|
2
|
+
# and create a pull request if any changes
|
|
3
|
+
|
|
4
|
+
name: Pre-commit auto-update
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
schedule:
|
|
8
|
+
- cron: "15 2 * * *"
|
|
9
|
+
workflow_dispatch: # to trigger manually
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
auto-update:
|
|
16
|
+
# Disables this workflow from running in a repository that is not part of the indicated organization/user
|
|
17
|
+
if: github.repository_owner == 'Tobi-De'
|
|
18
|
+
permissions:
|
|
19
|
+
contents: write # for peter-evans/create-pull-request to create branch
|
|
20
|
+
pull-requests: write # for peter-evans/create-pull-request to create a PR
|
|
21
|
+
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v4
|
|
25
|
+
- uses: actions/setup-python@v4
|
|
26
|
+
with:
|
|
27
|
+
python-version: "3.11"
|
|
28
|
+
|
|
29
|
+
- name: Install pre-commit
|
|
30
|
+
run: pip install pre-commit
|
|
31
|
+
|
|
32
|
+
- name: Autoupdate generated projects
|
|
33
|
+
working-directory: "{{ cookiecutter.project_name }}"
|
|
34
|
+
run: pre-commit autoupdate
|
|
35
|
+
|
|
36
|
+
- name: Create Pull Request
|
|
37
|
+
uses: peter-evans/create-pull-request@v5
|
|
38
|
+
with:
|
|
39
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
40
|
+
branch: update/pre-commit-autoupdate
|
|
41
|
+
title: Auto-update pre-commit hooks
|
|
42
|
+
commit-message: Auto-update pre-commit hooks
|
|
43
|
+
body: Update versions of tools in pre-commit configs to latest version
|
|
44
|
+
labels: update
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Tobi DEGNON
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# falco blueprint basic
|
|
2
|
+
|
|
3
|
+
[](https://github.com/Tobi-De/falco_blueprint_basic/actions/workflows/ci.yml)
|
|
4
|
+
|
|
5
|
+
Project blueprint for https://github.com/Tobi-De/falco, run with:
|
|
6
|
+
|
|
7
|
+
```shell
|
|
8
|
+
pip install falco-cli
|
|
9
|
+
falco start-project my_awesome_project
|
|
10
|
+
```
|
falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.editorconfig
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# http://editorconfig.org
|
|
2
|
+
|
|
3
|
+
root = true
|
|
4
|
+
|
|
5
|
+
[*]
|
|
6
|
+
charset = utf-8
|
|
7
|
+
end_of_line = lf
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
|
|
11
|
+
[*.{py,rst,ini}]
|
|
12
|
+
indent_style = space
|
|
13
|
+
indent_size = 4
|
|
14
|
+
|
|
15
|
+
[*.{html,css,scss,json,yml,xml,toml}]
|
|
16
|
+
indent_style = space
|
|
17
|
+
indent_size = 2
|
|
18
|
+
|
|
19
|
+
[*.md]
|
|
20
|
+
trim_trailing_whitespace = false
|
|
21
|
+
|
|
22
|
+
[Makefile]
|
|
23
|
+
indent_style = tab
|
|
24
|
+
|
|
25
|
+
[default.conf]
|
|
26
|
+
indent_style = space
|
|
27
|
+
indent_size = 2
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
- package-ecosystem: "pip" # See documentation for possible values
|
|
9
|
+
directory: "/" # Location of package manifests
|
|
10
|
+
schedule:
|
|
11
|
+
interval: "weekly"
|
|
12
|
+
|
|
13
|
+
- package-ecosystem: "pip"
|
|
14
|
+
directory: "/requirements"
|
|
15
|
+
schedule:
|
|
16
|
+
interval: "weekly"
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: CD
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_run:
|
|
5
|
+
workflows: [CI]
|
|
6
|
+
types: [completed]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
deploy-to-caprover:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
packages: write
|
|
15
|
+
|
|
16
|
+
if: {% raw %}${{ github.event.workflow_run.conclusion == 'success' }}{% endraw %}
|
|
17
|
+
steps:
|
|
18
|
+
- uses: adamghill/build-docker-and-deploy-to-caprover@main
|
|
19
|
+
with:
|
|
20
|
+
github-token: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
|
|
21
|
+
caprover-app-name: {{ cookiecutter.project_name }}
|
|
22
|
+
caprover-server-url: {% raw %}${{ secrets.CAPROVER_SERVER_URL }}{% endraw %}
|
|
23
|
+
caprover-app-token: {% raw %}${{ secrets.CAPROVER_APP_TOKEN }}{% endraw %}
|
|
24
|
+
docker-file-name: deploy/Dockerfile
|
|
25
|
+
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches: ["master", "main"]
|
|
6
|
+
paths-ignore: ["docs/**"]
|
|
7
|
+
|
|
8
|
+
push:
|
|
9
|
+
branches: ["master", "main"]
|
|
10
|
+
paths-ignore: ["docs/**"]
|
|
11
|
+
|
|
12
|
+
workflow_dispatch:
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: {% raw %}${{ github.head_ref || github.run_id }}{% endraw %}
|
|
16
|
+
cancel-in-progress: true
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
types:
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
env:
|
|
22
|
+
DEBUG: True
|
|
23
|
+
steps:
|
|
24
|
+
- name: Checkout Code Repository
|
|
25
|
+
uses: actions/checkout@v4
|
|
26
|
+
- name: Set up Python
|
|
27
|
+
uses: actions/setup-python@v5
|
|
28
|
+
with:
|
|
29
|
+
python-version: "3.12"
|
|
30
|
+
cache: pip
|
|
31
|
+
cache-dependency-path: |
|
|
32
|
+
requirements.txt
|
|
33
|
+
- name: Install hatch
|
|
34
|
+
run: |
|
|
35
|
+
pip install hatch
|
|
36
|
+
- name: Run mypy
|
|
37
|
+
run: |
|
|
38
|
+
hatch run mypy .
|
|
39
|
+
|
|
40
|
+
checks:
|
|
41
|
+
runs-on: ubuntu-latest
|
|
42
|
+
env:
|
|
43
|
+
AWS_ACCESS_KEY_ID: ""
|
|
44
|
+
AWS_SECRET_ACCESS_KEY: ""
|
|
45
|
+
AWS_S3_REGION_NAME: ""
|
|
46
|
+
steps:
|
|
47
|
+
- name: Checkout Code Repository
|
|
48
|
+
uses: actions/checkout@v4
|
|
49
|
+
- name: Set up Python
|
|
50
|
+
uses: actions/setup-python@v5
|
|
51
|
+
with:
|
|
52
|
+
python-version: "3.12"
|
|
53
|
+
cache: pip
|
|
54
|
+
cache-dependency-path: |
|
|
55
|
+
requirements.txt
|
|
56
|
+
- name: Install hatch
|
|
57
|
+
run: |
|
|
58
|
+
pip install hatch
|
|
59
|
+
- name: Run deployment checks
|
|
60
|
+
run: |
|
|
61
|
+
hatch run python manage.py check --deploy
|
|
62
|
+
|
|
63
|
+
pytest:
|
|
64
|
+
runs-on: ubuntu-latest
|
|
65
|
+
services:
|
|
66
|
+
postgres:
|
|
67
|
+
image: postgres:15
|
|
68
|
+
ports:
|
|
69
|
+
- 5432:5432
|
|
70
|
+
env:
|
|
71
|
+
POSTGRES_PASSWORD: postgres
|
|
72
|
+
env:
|
|
73
|
+
DATABASE_URL: "postgres://postgres:postgres@localhost:5432/postgres"
|
|
74
|
+
DEBUG: True
|
|
75
|
+
steps:
|
|
76
|
+
- name: Checkout Code Repository
|
|
77
|
+
uses: actions/checkout@v4
|
|
78
|
+
- name: Set up Python
|
|
79
|
+
uses: actions/setup-python@v5
|
|
80
|
+
with:
|
|
81
|
+
python-version: "3.12"
|
|
82
|
+
cache: pip
|
|
83
|
+
cache-dependency-path: |
|
|
84
|
+
requirements.txt
|
|
85
|
+
- name: Install hatch
|
|
86
|
+
run: |
|
|
87
|
+
pip install hatch
|
|
88
|
+
- name: Test with pytest
|
|
89
|
+
run: hatch run test:test
|