falco-cli 0.0.1__tar.gz → 0.0.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.0.1 → falco_cli-0.0.2}/.pre-commit-config.yaml +8 -7
- {falco_cli-0.0.1 → falco_cli-0.0.2}/PKG-INFO +16 -6
- {falco_cli-0.0.1 → falco_cli-0.0.2}/README.md +15 -3
- falco_cli-0.0.2/assets/falco-logo.svg +1 -0
- falco_cli-0.0.2/docs/_templates/partials/globaltoc-above.html +17 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/conf.py +13 -3
- falco_cli-0.0.2/docs/guides/deployment.rst +147 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/index.rst +13 -11
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/interactive_user_experience_with_htmx.rst +7 -4
- falco_cli-0.0.2/docs/guides/logging_and_monitoring.rst +4 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/optimizing_database_access.rst +4 -0
- falco_cli-0.0.2/docs/guides/running_project_in_a_container.rst +13 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/task_queues_and_schedulers.rst +10 -3
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/writing_documentation.rst +24 -2
- falco_cli-0.0.2/docs/images/E1.svg +1 -0
- falco_cli-0.0.2/docs/images/logo_with_text.svg +1 -0
- falco_cli-0.0.2/docs/images/project-tree.svg +70 -0
- falco_cli-0.0.2/docs/images/start-project.svg +94 -0
- falco_cli-0.0.2/docs/images/sync-dotenv.svg +94 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/index.rst +5 -2
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/install.rst +2 -4
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/the_cli/index.rst +7 -2
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/the_cli/start_project.rst +17 -27
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/the_cli/work.rst +4 -2
- {falco_cli-0.0.1 → falco_cli-0.0.2}/pyproject.toml +4 -5
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/__about__.py +1 -1
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/__init__.py +1 -2
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/__main__.py +8 -19
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/commands/htmx.py +1 -2
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/commands/htmx_extension.py +4 -3
- falco_cli-0.0.2/src/falco/commands/model_crud.py +6 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/commands/rm_migrations.py +2 -4
- falco_cli-0.0.2/src/falco/commands/start_project.py +79 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/commands/sync_dotenv.py +5 -9
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/commands/work.py +10 -5
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/utils.py +10 -35
- falco_cli-0.0.2/src/falco_templates/project_name/.github/dependabot.yml +11 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/.gitignore +1 -1
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/README.md +1 -1
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/static/vendors/htmx/htmx.min.js +0 -1
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/templates/home.html +1 -1
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/users/migrations/0001_initial.py +2 -2
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/pyproject.toml +1 -1
- falco_cli-0.0.2/tests/__init__.py +0 -0
- falco_cli-0.0.1/docs/guides/deployment.rst +0 -42
- falco_cli-0.0.1/docs/guides/running_project_in_a_container.rst +0 -4
- falco_cli-0.0.1/docs/images/logo.svg +0 -1421
- falco_cli-0.0.1/docs/images/project-tree.svg +0 -198
- falco_cli-0.0.1/docs/images/start-project.svg +0 -106
- falco_cli-0.0.1/docs/images/sync-dotenv.svg +0 -102
- falco_cli-0.0.1/src/falco/commands/model_crud.py +0 -8
- falco_cli-0.0.1/src/falco/commands/start_project.py +0 -123
- {falco_cli-0.0.1 → falco_cli-0.0.2}/.github/dependabot.yml +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/.github/workflows/deploy.yml +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/.github/workflows/pre-commit-auto-update.yml +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/.github/workflows/test.yml +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/.gitignore +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/CODE_OF_CONDUCT.md +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/LICENSE +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/.rich-codex.yml +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/codeofconduct.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/contributing.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/avoiding_god_models.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/database_tips.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/dynamic_model_schema.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/multitenancy.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/permissions_and_authorization.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/realtime.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/use_sqlite_in_production.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/writing_tests.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/guides/writting_async_code.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/images/crud.svg +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/images/falco.svg +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/images/htmx-ext.svg +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/images/htmx.svg +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/images/rm-migrations.svg +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/images/work.svg +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/license.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/the_cli/crud.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/the_cli/htmx.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/the_cli/rm_migrations.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/the_cli/sync_dotenv.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/docs/tips_and_extra.rst +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/src/falco/commands/__init__.py +0 -0
- {falco_cli-0.0.1/templates/project_name/config → falco_cli-0.0.2/src/falco_templates}/__init__.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/.env.template +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/.github/workflows/ci.yml +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/.pre-commit-config.yaml +0 -0
- {falco_cli-0.0.1/templates/project_name/docker → falco_cli-0.0.2/src/falco_templates/project_name/config}/__init__.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/config/asgi.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/config/settings.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/config/urls.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/config/wsgi.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/docker/Dockerfile +0 -0
- {falco_cli-0.0.1/templates/project_name/project_name → falco_cli-0.0.2/src/falco_templates/project_name/docker}/__init__.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/docker/entrypoint.sh +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/manage.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/playground.ipynb +0 -0
- {falco_cli-0.0.1/templates/project_name/project_name/core → falco_cli-0.0.2/src/falco_templates/project_name/project_name}/__init__.py +0 -0
- {falco_cli-0.0.1/templates/project_name/project_name/core/management → falco_cli-0.0.2/src/falco_templates/project_name/project_name/core}/__init__.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/core/apps.py +0 -0
- {falco_cli-0.0.1/templates/project_name/project_name/core/management/commands → falco_cli-0.0.2/src/falco_templates/project_name/project_name/core/management}/__init__.py +0 -0
- {falco_cli-0.0.1/templates/project_name/project_name/users → falco_cli-0.0.2/src/falco_templates/project_name/project_name/core/management/commands}/__init__.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/core/management/commands/makesuperuser.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/templates/base.html +0 -0
- {falco_cli-0.0.1/templates/project_name/project_name/users/migrations → falco_cli-0.0.2/src/falco_templates/project_name/project_name/users}/__init__.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/users/admin.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/users/apps.py +0 -0
- {falco_cli-0.0.1/tests → falco_cli-0.0.2/src/falco_templates/project_name/project_name/users/migrations}/__init__.py +0 -0
- {falco_cli-0.0.1/templates → falco_cli-0.0.2/src/falco_templates}/project_name/project_name/users/models.py +0 -0
- {falco_cli-0.0.1 → falco_cli-0.0.2}/tests/conftest.py +0 -0
|
@@ -27,10 +27,11 @@ repos:
|
|
|
27
27
|
args:
|
|
28
28
|
- "--application-directories=falco"
|
|
29
29
|
|
|
30
|
-
- repo: https://github.com/
|
|
31
|
-
rev:
|
|
32
|
-
hooks:
|
|
33
|
-
- id:
|
|
34
|
-
args:
|
|
35
|
-
|
|
36
|
-
|
|
30
|
+
# - repo: https://github.com/psf/black
|
|
31
|
+
# rev: 23.12.0
|
|
32
|
+
# hooks:
|
|
33
|
+
# - id: black
|
|
34
|
+
# args:
|
|
35
|
+
# - "."
|
|
36
|
+
# - "--line-length=120"
|
|
37
|
+
# - "--exclude=src/falco_templates/project_name/*"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: falco-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Project-URL: Documentation, https://falco.oluwatobi.dev/
|
|
5
5
|
Project-URL: Issues, https://github.com/tobi-de/falco/issues
|
|
6
6
|
Project-URL: Source, https://github.com/tobi-de/falco
|
|
@@ -22,7 +22,6 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
22
22
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
23
23
|
Requires-Python: >=3.10
|
|
24
24
|
Requires-Dist: cappa
|
|
25
|
-
Requires-Dist: dict-deep
|
|
26
25
|
Requires-Dist: django<5
|
|
27
26
|
Requires-Dist: honcho
|
|
28
27
|
Requires-Dist: httpx
|
|
@@ -30,18 +29,29 @@ Requires-Dist: hupper
|
|
|
30
29
|
Requires-Dist: python-dotenv
|
|
31
30
|
Requires-Dist: rich
|
|
32
31
|
Requires-Dist: tomli
|
|
33
|
-
Requires-Dist: tomli-w
|
|
34
32
|
Description-Content-Type: text/markdown
|
|
35
33
|
|
|
36
|
-
|
|
34
|
+
<p align="center">
|
|
35
|
+
<a href="https://falco.oluwatobi.dev/"><img src="https://raw.githubusercontent.com/Tobi-De/falco/main/assets/falco-logo.svg" alt="falco logo" height="200"/></a>
|
|
36
|
+
</p>
|
|
37
|
+
|
|
38
|
+
<h1 align="center">
|
|
39
|
+
<a href="https://www.django-unicorn.com/">Falco</a>
|
|
40
|
+
<p>The toolkit for a better django development experience</p>
|
|
41
|
+
</h1>
|
|
37
42
|
|
|
38
43
|
[](https://github.com/Tobi-De/falco/actions/workflows/deploy.yml)
|
|
39
44
|
[](https://github.com/Tobi-De/falco/actions/workflows/test.yml)
|
|
40
|
-
[](https://pypi.org/project/falco/)
|
|
45
|
+
[](https://pypi.org/project/falco-cli/)
|
|
41
46
|
[](https://github.com/pypa/hatch)
|
|
42
47
|
[](https://github.com/astral-sh/ruff)
|
|
43
48
|
[](https://github.com/Tobi-De/falco/blob/main/LICENSE)
|
|
44
49
|
|
|
50
|
+
## Getting started
|
|
51
|
+
|
|
52
|
+
### The CLI
|
|
53
|
+
|
|
54
|
+
### The guides
|
|
45
55
|
|
|
46
56
|
## Acknowledgements
|
|
47
57
|
|
|
@@ -49,5 +59,5 @@ Falco is inspired by (and borrows elements from) some excellent starter template
|
|
|
49
59
|
|
|
50
60
|
- [cookiecutter-django](https://github.com/cookiecutter/cookiecutter-django)
|
|
51
61
|
- [django-hatch-startproject](https://github.com/oliverandrich/django-hatch-startproject)
|
|
52
|
-
- [django-unicorn](https://github.com/adamghill/django-unicorn)
|
|
62
|
+
- [django-unicorn](https://github.com/adamghill/django-unicorn) (Inspiration for the logo)
|
|
53
63
|
|
|
@@ -1,12 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://falco.oluwatobi.dev/"><img src="https://raw.githubusercontent.com/Tobi-De/falco/main/assets/falco-logo.svg" alt="falco logo" height="200"/></a>
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">
|
|
6
|
+
<a href="https://www.django-unicorn.com/">Falco</a>
|
|
7
|
+
<p>The toolkit for a better django development experience</p>
|
|
8
|
+
</h1>
|
|
2
9
|
|
|
3
10
|
[](https://github.com/Tobi-De/falco/actions/workflows/deploy.yml)
|
|
4
11
|
[](https://github.com/Tobi-De/falco/actions/workflows/test.yml)
|
|
5
|
-
[](https://pypi.org/project/falco/)
|
|
12
|
+
[](https://pypi.org/project/falco-cli/)
|
|
6
13
|
[](https://github.com/pypa/hatch)
|
|
7
14
|
[](https://github.com/astral-sh/ruff)
|
|
8
15
|
[](https://github.com/Tobi-De/falco/blob/main/LICENSE)
|
|
9
16
|
|
|
17
|
+
## Getting started
|
|
18
|
+
|
|
19
|
+
### The CLI
|
|
20
|
+
|
|
21
|
+
### The guides
|
|
10
22
|
|
|
11
23
|
## Acknowledgements
|
|
12
24
|
|
|
@@ -14,5 +26,5 @@ Falco is inspired by (and borrows elements from) some excellent starter template
|
|
|
14
26
|
|
|
15
27
|
- [cookiecutter-django](https://github.com/cookiecutter/cookiecutter-django)
|
|
16
28
|
- [django-hatch-startproject](https://github.com/oliverandrich/django-hatch-startproject)
|
|
17
|
-
- [django-unicorn](https://github.com/adamghill/django-unicorn)
|
|
29
|
+
- [django-unicorn](https://github.com/adamghill/django-unicorn) (Inspiration for the logo)
|
|
18
30
|
|