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.
Files changed (455) hide show
  1. {falco_cli-0.22.0 → falco_cli-0.22.2}/.all-contributorsrc +9 -0
  2. {falco_cli-0.22.0 → falco_cli-0.22.2}/.editorconfig +1 -1
  3. falco_cli-0.22.2/.github/workflows/ci.yml +30 -0
  4. {falco_cli-0.22.0 → falco_cli-0.22.2}/.github/workflows/publish.yml +6 -11
  5. {falco_cli-0.22.0 → falco_cli-0.22.2}/.gitmodules +3 -0
  6. {falco_cli-0.22.0 → falco_cli-0.22.2}/.pre-commit-config.yaml +12 -5
  7. falco_cli-0.22.2/.readthedocs.yaml +34 -0
  8. {falco_cli-0.22.0 → falco_cli-0.22.2}/PKG-INFO +19 -12
  9. {falco_cli-0.22.0 → falco_cli-0.22.2}/README.md +17 -11
  10. falco_cli-0.22.2/blueprints/falco_blueprint_basic/.git +1 -0
  11. falco_cli-0.22.2/blueprints/falco_blueprint_basic/.github/workflows/ci.yml +75 -0
  12. falco_cli-0.22.2/blueprints/falco_blueprint_basic/.github/workflows/pre-commit-auto-update.yml +44 -0
  13. falco_cli-0.22.2/blueprints/falco_blueprint_basic/LICENSE +21 -0
  14. falco_cli-0.22.2/blueprints/falco_blueprint_basic/README.md +10 -0
  15. falco_cli-0.22.2/blueprints/falco_blueprint_basic/cookiecutter.json +6 -0
  16. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.editorconfig +27 -0
  17. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.env.template +15 -0
  18. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
  19. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
  20. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
  21. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.gitignore +140 -0
  22. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +60 -0
  23. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/README.md +46 -0
  24. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/Dockerfile +51 -0
  25. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
  26. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
  27. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
  28. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
  29. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
  30. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
  31. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
  32. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
  33. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
  34. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
  35. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
  36. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
  37. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
  38. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/manage.py +23 -0
  39. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
  40. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/pyproject.toml +184 -0
  41. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
  42. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
  43. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
  44. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
  45. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
  46. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
  47. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +391 -0
  48. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
  49. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
  50. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
  51. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
  52. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
  53. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
  54. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +33 -0
  55. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
  56. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
  57. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +6 -0
  58. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
  59. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
  60. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
  61. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
  62. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
  63. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
  64. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
  65. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
  66. falco_cli-0.22.2/blueprints/falco_blueprint_basic/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
  67. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.git +1 -0
  68. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.github/workflows/ci.yml +75 -0
  69. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.github/workflows/pre-commit-auto-update.yml +44 -0
  70. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/.gitignore +140 -0
  71. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/LICENSE +21 -0
  72. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/README.md +15 -0
  73. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/cookiecutter.json +9 -0
  74. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.editorconfig +27 -0
  75. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.env.template +15 -0
  76. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
  77. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
  78. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
  79. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.gitignore +140 -0
  80. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +60 -0
  81. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/README.md +46 -0
  82. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/create.html.jinja +21 -0
  83. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/detail.html.jinja +27 -0
  84. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/list.html.jinja +102 -0
  85. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/blueprints/update.html.jinja +24 -0
  86. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/Dockerfile +49 -0
  87. 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
  88. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
  89. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
  90. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
  91. 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
  92. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
  93. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
  94. 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
  95. 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
  96. 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
  97. 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
  98. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
  99. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
  100. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
  101. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
  102. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
  103. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
  104. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
  105. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
  106. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/manage.py +23 -0
  107. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
  108. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/pyproject.toml +186 -0
  109. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/tests/__init__.py +0 -0
  110. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
  111. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
  112. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/__init__.py +0 -0
  113. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
  114. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/__init__.py +0 -0
  115. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
  116. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
  117. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
  118. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +391 -0
  119. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/css/style.css +16 -0
  120. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
  121. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
  122. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
  123. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
  124. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
  125. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
  126. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/account_inactive.html +13 -0
  127. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/base.html +25 -0
  128. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/email.html +80 -0
  129. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/email_confirm.html +29 -0
  130. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/login.html +54 -0
  131. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/logout.html +22 -0
  132. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_change.html +20 -0
  133. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_reset.html +30 -0
  134. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_reset_done.html +19 -0
  135. 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
  136. 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
  137. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/password_set.html +23 -0
  138. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/signup.html +29 -0
  139. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/signup_closed.html +13 -0
  140. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/verification_sent.html +15 -0
  141. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/verified_email_required.html +26 -0
  142. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +128 -0
  143. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
  144. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
  145. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +20 -0
  146. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
  147. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
  148. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/__init__.py +0 -0
  149. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
  150. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
  151. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
  152. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
  153. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
  154. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
  155. falco_cli-0.22.2/blueprints/falco_blueprint_basic_bootstrap/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
  156. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/.git +1 -0
  157. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/.github/workflows/ci.yml +75 -0
  158. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/.github/workflows/pre-commit-auto-update.yml +44 -0
  159. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/LICENSE +21 -0
  160. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/README.md +10 -0
  161. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/cookiecutter.json +9 -0
  162. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.editorconfig +27 -0
  163. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.env.template +15 -0
  164. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
  165. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
  166. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
  167. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.gitignore +140 -0
  168. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +50 -0
  169. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/README.md +46 -0
  170. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/create.html.jinja +19 -0
  171. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/detail.html.jinja +27 -0
  172. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/list.html.jinja +97 -0
  173. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/blueprints/update.html.jinja +23 -0
  174. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/Dockerfile +49 -0
  175. 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
  176. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
  177. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
  178. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
  179. 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
  180. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
  181. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
  182. 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
  183. 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
  184. 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
  185. 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
  186. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
  187. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
  188. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
  189. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
  190. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
  191. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
  192. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
  193. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
  194. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/manage.py +23 -0
  195. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
  196. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/pyproject.toml +184 -0
  197. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/tests/__init__.py +0 -0
  198. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
  199. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
  200. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/__init__.py +0 -0
  201. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
  202. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/__init__.py +0 -0
  203. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
  204. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
  205. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
  206. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +383 -0
  207. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
  208. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
  209. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
  210. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
  211. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
  212. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
  213. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/base_entrance.html +1 -0
  214. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/account/base_manage.html +1 -0
  215. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +35 -0
  216. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
  217. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
  218. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +6 -0
  219. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
  220. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
  221. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/__init__.py +0 -0
  222. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
  223. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
  224. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
  225. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
  226. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
  227. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
  228. falco_cli-0.22.2/blueprints/falco_blueprint_basic_pico/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
  229. falco_cli-0.22.2/blueprints/falco_twind/.git +1 -0
  230. falco_cli-0.22.2/blueprints/falco_twind/.github/workflows/ci.yml +75 -0
  231. falco_cli-0.22.2/blueprints/falco_twind/.github/workflows/pre-commit-auto-update.yml +44 -0
  232. falco_cli-0.22.2/blueprints/falco_twind/LICENSE +21 -0
  233. falco_cli-0.22.2/blueprints/falco_twind/README.md +10 -0
  234. falco_cli-0.22.2/blueprints/falco_twind/cookiecutter.json +6 -0
  235. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.editorconfig +27 -0
  236. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.env.template +15 -0
  237. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.github/dependabot.yml +16 -0
  238. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.github/workflows/cd.yml +25 -0
  239. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.github/workflows/ci.yml +89 -0
  240. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.gitignore +140 -0
  241. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/.pre-commit-config.yaml +60 -0
  242. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/README.md +46 -0
  243. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/Dockerfile +51 -0
  244. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/dependencies.d/setup +0 -0
  245. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/finish +4 -0
  246. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/run +5 -0
  247. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/server/type +1 -0
  248. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/dependencies.d/base +0 -0
  249. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/type +1 -0
  250. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/setup/up +1 -0
  251. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/server +0 -0
  252. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/setup +0 -0
  253. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/user/contents.d/worker +0 -0
  254. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/dependencies.d/setup +0 -0
  255. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/run +5 -0
  256. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/s6-rc.d/worker/type +1 -0
  257. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/etc/s6-overlay/scripts/db-prepare.sh +4 -0
  258. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/deploy/gunicorn.conf.py +13 -0
  259. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/applications/index.rst +8 -0
  260. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/applications/users/index.rst +2 -0
  261. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/conf.py +53 -0
  262. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/docs/index.rst +17 -0
  263. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/manage.py +23 -0
  264. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/playground.ipynb +40 -0
  265. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/pyproject.toml +184 -0
  266. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/tests/__init__.py +0 -0
  267. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/tests/conftest.py +43 -0
  268. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/tests/test_assert_true.py +2 -0
  269. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/__init__.py +0 -0
  270. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/asgi.py +7 -0
  271. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/__init__.py +0 -0
  272. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/apps.py +6 -0
  273. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/sentry.py +33 -0
  274. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/core/views.py +49 -0
  275. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/settings.py +391 -0
  276. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/static/vendors/htmx/htmx.min.js +1 -0
  277. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/.well-known/security.txt +3 -0
  278. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403.html +14 -0
  279. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/403_csrf.html +14 -0
  280. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/404.html +14 -0
  281. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/500.html +11 -0
  282. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base.html +33 -0
  283. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/base_email.html +73 -0
  284. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/about.html +6 -0
  285. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/pages/home.html +6 -0
  286. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/templates/robots.txt +2 -0
  287. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/urls.py +55 -0
  288. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/__init__.py +0 -0
  289. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/admin.py +62 -0
  290. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/apps.py +5 -0
  291. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/forms.py +12 -0
  292. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/0001_initial.py +80 -0
  293. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/migrations/__init__.py +0 -0
  294. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/users/models.py +53 -0
  295. falco_cli-0.22.2/blueprints/falco_twind/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}/wsgi.py +7 -0
  296. falco_cli-0.22.2/demo/config/__init__.py +0 -0
  297. falco_cli-0.22.2/demo/demo/__init__.py +0 -0
  298. falco_cli-0.22.2/demo/demo/core/__init__.py +0 -0
  299. falco_cli-0.22.2/demo/demo/orders/__init__.py +0 -0
  300. falco_cli-0.22.2/demo/demo/orders/migrations/__init__.py +0 -0
  301. falco_cli-0.22.2/demo/demo/products/__init__.py +0 -0
  302. falco_cli-0.22.2/demo/demo/products/migrations/__init__.py +0 -0
  303. falco_cli-0.22.2/demo/demo/users/__init__.py +0 -0
  304. falco_cli-0.22.2/demo/demo/users/migrations/__init__.py +0 -0
  305. falco_cli-0.22.2/demo/pyproject.toml +13 -0
  306. falco_cli-0.22.2/docs/_templates/components/nav-versions.html +0 -0
  307. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/conf.py +13 -4
  308. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/index.rst +13 -7
  309. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/install.rst +4 -2
  310. falco_cli-0.22.0/requirements/requirements-docs.txt → falco_cli-0.22.2/docs/requirements.txt +179 -45
  311. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/crud.rst +9 -7
  312. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/index.rst +0 -1
  313. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/packages.rst +1 -1
  314. falco_cli-0.22.2/justfile +111 -0
  315. falco_cli-0.22.2/pyproject.toml +257 -0
  316. {falco_cli-0.22.0 → falco_cli-0.22.2}/requirements.txt +66 -15
  317. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/__about__.py +1 -1
  318. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/model_crud.py +2 -0
  319. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/reset_migrations.py +2 -0
  320. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/list.html.jinja +2 -0
  321. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/utils/utils.py.jinja +1 -1
  322. falco_cli-0.22.2/tests/__init__.py +0 -0
  323. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_start_project.py +26 -27
  324. falco_cli-0.22.0/.github/workflows/documentation.yml +0 -57
  325. falco_cli-0.22.0/bump.sh +0 -46
  326. falco_cli-0.22.0/demo/pyproject.toml +0 -5
  327. falco_cli-0.22.0/docs/_templates/partials/globaltoc-above.html +0 -17
  328. falco_cli-0.22.0/pyproject.toml +0 -176
  329. {falco_cli-0.22.0 → falco_cli-0.22.2}/.github/workflows/pre-commit-auto-update.yml +0 -0
  330. {falco_cli-0.22.0 → falco_cli-0.22.2}/.gitignore +0 -0
  331. {falco_cli-0.22.0 → falco_cli-0.22.2}/.vscode/settings.json +0 -0
  332. {falco_cli-0.22.0 → falco_cli-0.22.2}/CODE_OF_CONDUCT.md +0 -0
  333. {falco_cli-0.22.0 → falco_cli-0.22.2}/LICENSE +0 -0
  334. {falco_cli-0.22.0 → falco_cli-0.22.2}/all-contributorsrc +0 -0
  335. {falco_cli-0.22.0 → falco_cli-0.22.2}/assets/falco-logo.png +0 -0
  336. {falco_cli-0.22.0 → falco_cli-0.22.2}/assets/falco-logo.svg +0 -0
  337. {falco_cli-0.22.0 → falco_cli-0.22.2}/assets/og-image.jpg +0 -0
  338. /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
  339. /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
  340. /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
  341. /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
  342. /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
  343. /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
  344. {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
  345. {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
  346. {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
  347. {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
  348. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/asgi.py +0 -0
  349. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/settings.py +0 -0
  350. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/urls.py +0 -0
  351. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/config/wsgi.py +0 -0
  352. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/core/apps.py +0 -0
  353. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/core/types.py +0 -0
  354. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/core/utils.py +0 -0
  355. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/apps.py +0 -0
  356. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0001_initial.py +0 -0
  357. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0002_order_created.py +0 -0
  358. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0003_order_completed_order_image_order_receipt.py +0 -0
  359. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/migrations/0004_alter_order_completed.py +0 -0
  360. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/orders/models.py +0 -0
  361. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/admin.py +0 -0
  362. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/apps.py +0 -0
  363. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/forms.py +0 -0
  364. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/migrations/0001_initial.py +0 -0
  365. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/models.py +0 -0
  366. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/tests.py +0 -0
  367. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/urls.py +0 -0
  368. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/products/views.py +0 -0
  369. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/admin.py +0 -0
  370. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/apps.py +0 -0
  371. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/migrations/0001_initial.py +0 -0
  372. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/demo/users/models.py +0 -0
  373. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/manage.py +0 -0
  374. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/requirements.txt +0 -0
  375. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/base.html +0 -0
  376. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_create.html +0 -0
  377. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_detail.html +0 -0
  378. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_list.html +0 -0
  379. {falco_cli-0.22.0 → falco_cli-0.22.2}/demo/templates/products/product_update.html +0 -0
  380. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/.rich-codex.yml +0 -0
  381. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/Makefile +0 -0
  382. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/_static/add-og-title-to-home.js +0 -0
  383. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/_static/custom.css +0 -0
  384. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/changelog.rst +0 -0
  385. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/codeofconduct.rst +0 -0
  386. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/contributing.rst +0 -0
  387. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/avoiding_god_models.rst +0 -0
  388. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/database_tips.rst +0 -0
  389. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/deployment.rst +0 -0
  390. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/dynamic_model_schema.rst +0 -0
  391. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/index.rst +0 -0
  392. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/interactive_user_interfaces.rst +0 -0
  393. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/logging_and_monitoring.rst +0 -0
  394. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/multitenancy.rst +0 -0
  395. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/optimizing_database_access.rst +0 -0
  396. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/permissions_and_authorization.rst +0 -0
  397. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/realtime.rst +0 -0
  398. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/running_project_in_a_container.rst +0 -0
  399. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/task_queues_and_schedulers.rst +0 -0
  400. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/tips_and_extra.rst +0 -0
  401. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/use_sqlite_in_production.rst +0 -0
  402. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/writing_async_code.rst +0 -0
  403. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/writing_documentation.rst +0 -0
  404. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/guides/writing_tests.rst +0 -0
  405. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/deployment.png +0 -0
  406. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/logo_with_text.svg +0 -0
  407. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/project-tree.svg +0 -0
  408. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/images/task_queue.png +0 -0
  409. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/license.rst +0 -0
  410. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/make.bat +0 -0
  411. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/htmx.rst +0 -0
  412. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/index.rst +0 -0
  413. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/migrations.rst +0 -0
  414. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_app.rst +0 -0
  415. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/dependency.rst +0 -0
  416. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/deploy.rst +0 -0
  417. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/issues.rst +0 -0
  418. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/start_project/structure.rst +0 -0
  419. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/sync_dotenv.rst +0 -0
  420. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/usage.rst +0 -0
  421. {falco_cli-0.22.0 → falco_cli-0.22.2}/docs/the_cli/work.rst +0 -0
  422. {falco_cli-0.22.0 → falco_cli-0.22.2}/scripts/project_tree.py +0 -0
  423. {falco_cli-0.22.0 → falco_cli-0.22.2}/scripts/update_readme_guides.py +0 -0
  424. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/__init__.py +0 -0
  425. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/__main__.py +0 -0
  426. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/checks.py +0 -0
  427. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/__init__.py +0 -0
  428. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/__init__.py +0 -0
  429. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/install_crud_utils.py +0 -0
  430. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/crud/utils.py +0 -0
  431. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/htmx.py +0 -0
  432. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/htmx_extension.py +0 -0
  433. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/rm_migrations.py +0 -0
  434. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/start_app.py +0 -0
  435. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/start_project.py +0 -0
  436. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/sync_dotenv.py +0 -0
  437. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/commands/work.py +0 -0
  438. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/config.py +0 -0
  439. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/create.html.jinja +0 -0
  440. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/detail.html.jinja +0 -0
  441. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/html/update.html.jinja +0 -0
  442. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/python/forms.py.jinja +0 -0
  443. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/python/views.py.jinja +0 -0
  444. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/crud/utils/types.py.jinja +0 -0
  445. {falco_cli-0.22.0 → falco_cli-0.22.2}/src/falco/utils.py +0 -0
  446. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_crud.py +0 -0
  447. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_htmx.py +0 -0
  448. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_htmx_extension.py +0 -0
  449. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_install_crud_utils.py +0 -0
  450. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_reset_migrations.py +0 -0
  451. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_rm_migrations.py +0 -0
  452. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_start_app.py +0 -0
  453. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_sync_dotenv.py +0 -0
  454. {falco_cli-0.22.0 → falco_cli-0.22.2}/tests/commands/test_work.py +0 -0
  455. {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,
@@ -12,7 +12,7 @@ trim_trailing_whitespace = true
12
12
  indent_style = space
13
13
  indent_size = 4
14
14
 
15
- [*.{html,css,scss,json,yml,xml}]
15
+ [*.{html,css,scss,json,yml,xml,toml}]
16
16
  indent_style = space
17
17
  indent_size = 2
18
18
 
@@ -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
- cache: pip
22
- cache-dependency-path: '**/pyproject.toml'
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.11'
41
- cache: pip
42
- cache-dependency-path: '**/pyproject.toml'
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
- rev: v2.12.0
33
- hooks:
34
- - id: pretty-format-toml
35
- args: [ --autofix , --indent, '4' ]
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.0
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
- [![Documentation](https://github.com/Tobi-De/falco/actions/workflows/documentation.yml/badge.svg)](https://github.com/Tobi-De/falco/actions/workflows/documentation.yml)
51
+ [![CI](https://github.com/Tobi-De/falco/actions/workflows/ci.yml/badge.svg)](https://github.com/Tobi-De/falco/actions/workflows/ci.yml)
51
52
  [![Publish Python Package](https://github.com/Tobi-De/falco/actions/workflows/publish.yml/badge.svg)](https://github.com/Tobi-De/falco/actions/workflows/publish.yml)
53
+ [![Documentation](https://readthedocs.org/projects/falco-cli/badge/?version=latest&style=flat)](https://beta.readthedocs.org/projects/falco-cli/builds/?version=latest)
52
54
  [![pypi](https://badge.fury.io/py/falco-cli.svg)](https://pypi.org/project/falco-cli/)
53
55
  [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
54
56
  [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](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
  <!-- [![Read the full documentation](https://img.shields.io/badge/Read%20The%20full%20Documentation-blue?style=for-the-badge&logo=ReadTheDocs)](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
- [![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-)
150
+ [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#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
- [![Documentation](https://github.com/Tobi-De/falco/actions/workflows/documentation.yml/badge.svg)](https://github.com/Tobi-De/falco/actions/workflows/documentation.yml)
10
+ [![CI](https://github.com/Tobi-De/falco/actions/workflows/ci.yml/badge.svg)](https://github.com/Tobi-De/falco/actions/workflows/ci.yml)
11
11
  [![Publish Python Package](https://github.com/Tobi-De/falco/actions/workflows/publish.yml/badge.svg)](https://github.com/Tobi-De/falco/actions/workflows/publish.yml)
12
+ [![Documentation](https://readthedocs.org/projects/falco-cli/badge/?version=latest&style=flat)](https://beta.readthedocs.org/projects/falco-cli/builds/?version=latest)
12
13
  [![pypi](https://badge.fury.io/py/falco-cli.svg)](https://pypi.org/project/falco-cli/)
13
14
  [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
14
15
  [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](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
  <!-- [![Read the full documentation](https://img.shields.io/badge/Read%20The%20full%20Documentation-blue?style=for-the-badge&logo=ReadTheDocs)](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
- [![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-)
109
+ [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#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
+
@@ -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
+ [![CI](https://github.com/Tobi-De/falco_blueprint_basic/actions/workflows/ci.yml/badge.svg)](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
+ ```
@@ -0,0 +1,6 @@
1
+ {
2
+ "project_name": "{{ cookiecutter.project_name }}",
3
+ "author_name": "{{ cookiecutter.author_name }}",
4
+ "author_email": "{{ cookiecutter.author_name }}",
5
+ "secret_key": "{{ cookiecutter.secret_key }}"
6
+ }
@@ -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,15 @@
1
+ SECRET_KEY=
2
+ ALLOWED_HOSTS=
3
+ DEBUG=
4
+ DATABASE_URL=
5
+ ADMIN_URL=
6
+ DEFAULT_FROM_EMAIL=
7
+
8
+ AWS_ACCESS_KEY_ID=
9
+ AWS_SECRET_ACCESS_KEY=
10
+ AWS_S3_REGION_NAME=
11
+
12
+ SENTRY_DSN=
13
+
14
+ DJANGO_SUPERUSER_EMAIL=
15
+ DJANGO_SUPERUSER_PASSWORD=
@@ -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