falco
falco copied to clipboard
Enhance your Django developer experience: CLI and Guides for the Modern Django Developer.
explain the github workflow setup, testing, types check, django check and then caprover deploy there is not release setup by default, every changes is directly push to production, explain and...
an option for the `work` command or a hatch `script` ```shell lsof -i :8000 -sTCP:LISTEN -t | xargs -t kill ```
Add a crud config for excluded_fields, by default generated project with the `modified` field excluded
- https://www.uxpin.com/studio/blog/table-ux/ - https://uxplanet.org/tables-that-arent-boring-a-guide-to-creating-visually-appealing-and-informative-data-tables-e20e885dd3cf - https://pencilandpaper.io/articles/ux-pattern-analysis-enterprise-data-tables/ the first columns should also serve as a link to details toolbars overs the table for seach add button, filtering center paginations numbers and...
https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html ```python # django-storages[s3] STORAGES = { "default": { "BACKEND": "storages.backends.s3.S3Storage", "OPTIONS": { "location": "media", "file_overwrite": False, }, }, } aws_s3_domain = AWS_S3_CUSTOM_DOMAIN or f"{AWS_STORAGE_BUCKET_NAME}.s3.amazonaws.com" MEDIA_URL = f"https://{aws_s3_domain}/media/" ```
https://github.com/jieter/django-tables2 Add via crud configuration an option to use django_tables2 ```toml [tool.falco.crud] use-django-tables2 = true ```
decent html templates with styling, override and improve django-allauth pages, similar to what cookiecutter django does - home page : similar to landing pages, very basic with project name, login,...
I want another version of the starter project, a more advanced version something similar to: - https://www.forgepackages.com/pro/ - https://www.saaspegasus.com/ - https://shipfa.st/ The idea is to ship and build faster, for...