gitextract_c7d8xipx/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTORS-template.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ ├── feature.md │ │ ├── paid-support.md │ │ └── question.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── changelog-template.md │ ├── contributors.json │ ├── dependabot.yml │ └── workflows/ │ ├── align-versions.yml │ ├── ci.yml │ ├── dependabot-uv-lock.yml │ ├── django-issue-checker.yml │ ├── issue-manager.yml │ ├── pre-commit-autoupdate.yml │ ├── update-changelog.yml │ └── update-contributors.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pyup.yml ├── .readthedocs.yaml ├── AGENTS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── cookiecutter.json ├── docs/ │ ├── 1-getting-started/ │ │ ├── project-generation-options.rst │ │ └── settings.rst │ ├── 2-local-development/ │ │ ├── developing-locally-docker.rst │ │ ├── developing-locally.rst │ │ └── generate-project-block.rst │ ├── 3-deployment/ │ │ ├── deployment-on-heroku.rst │ │ ├── deployment-on-pythonanywhere.rst │ │ └── deployment-with-docker.rst │ ├── 4-guides/ │ │ ├── docker-postgres-backups.rst │ │ ├── document.rst │ │ ├── linters.rst │ │ ├── testing.rst │ │ └── websocket.rst │ ├── 5-help/ │ │ ├── faq.rst │ │ └── troubleshooting.rst │ ├── 6-about/ │ │ ├── contributing.md │ │ ├── generative-ai.md │ │ └── maintainer-guide.md │ ├── Makefile │ ├── __init__.py │ ├── _static/ │ │ └── .gitkeep │ ├── conf.py │ ├── includes/ │ │ └── mailgun.rst │ ├── index.rst │ └── make.bat ├── hooks/ │ ├── __init__.py │ ├── post_gen_project.py │ └── pre_gen_project.py ├── pyproject.toml ├── scripts/ │ ├── __init__.py │ ├── create_django_issue.py │ ├── node_version.py │ ├── ruff_version.py │ ├── update_changelog.py │ └── update_contributors.py ├── tests/ │ ├── __init__.py │ ├── test_bare.sh │ ├── test_cookiecutter_generation.py │ ├── test_docker.sh │ └── test_hooks.py ├── tox.ini └── {{cookiecutter.project_slug}}/ ├── .devcontainer/ │ ├── bash_history │ ├── bashrc.override.sh │ └── devcontainer.json ├── .dockerignore ├── .drone.yml ├── .editorconfig ├── .envs/ │ ├── .local/ │ │ ├── .django │ │ └── .postgres │ └── .production/ │ ├── .django │ └── .postgres ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .travis.yml ├── CONTRIBUTORS.txt ├── COPYING ├── LICENSE ├── Procfile ├── README.md ├── bin/ │ └── post_compile ├── compose/ │ ├── local/ │ │ ├── django/ │ │ │ ├── Dockerfile │ │ │ ├── celery/ │ │ │ │ ├── beat/ │ │ │ │ │ └── start │ │ │ │ ├── flower/ │ │ │ │ │ └── start │ │ │ │ └── worker/ │ │ │ │ └── start │ │ │ └── start │ │ ├── docs/ │ │ │ ├── Dockerfile │ │ │ └── start │ │ ├── node/ │ │ │ └── Dockerfile │ │ └── uv/ │ │ └── Dockerfile │ └── production/ │ ├── aws/ │ │ ├── Dockerfile │ │ └── maintenance/ │ │ ├── download │ │ └── upload │ ├── django/ │ │ ├── Dockerfile │ │ ├── celery/ │ │ │ ├── beat/ │ │ │ │ └── start │ │ │ ├── flower/ │ │ │ │ └── start │ │ │ └── worker/ │ │ │ └── start │ │ ├── entrypoint │ │ └── start │ ├── nginx/ │ │ ├── Dockerfile │ │ └── default.conf │ ├── postgres/ │ │ ├── Dockerfile │ │ └── maintenance/ │ │ ├── _sourced/ │ │ │ ├── constants.sh │ │ │ ├── countdown.sh │ │ │ ├── messages.sh │ │ │ └── yes_no.sh │ │ ├── backup │ │ ├── backups │ │ ├── restore │ │ └── rmbackup │ └── traefik/ │ ├── Dockerfile │ └── traefik.yml ├── config/ │ ├── __init__.py │ ├── api.py │ ├── api_router.py │ ├── asgi.py │ ├── celery_app.py │ ├── settings/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── local.py │ │ ├── production.py │ │ └── test.py │ ├── urls.py │ ├── websocket.py │ └── wsgi.py ├── docker-compose.docs.yml ├── docker-compose.local.yml ├── docker-compose.production.yml ├── docs/ │ ├── Makefile │ ├── __init__.py │ ├── conf.py │ ├── howto.rst │ ├── index.rst │ ├── make.bat │ ├── pycharm/ │ │ └── configuration.rst │ └── users.rst ├── gulpfile.mjs ├── justfile ├── locale/ │ ├── README.md │ ├── en_US/ │ │ └── LC_MESSAGES/ │ │ └── django.po │ ├── fr_FR/ │ │ └── LC_MESSAGES/ │ │ └── django.po │ └── pt_BR/ │ └── LC_MESSAGES/ │ └── django.po ├── manage.py ├── merge_production_dotenvs_in_dotenv.py ├── package.json ├── pyproject.toml ├── requirements/ │ ├── base.txt │ ├── local.txt │ └── production.txt ├── tests/ │ ├── __init__.py │ └── test_merge_production_dotenvs_in_dotenv.py ├── utility/ │ ├── install_os_dependencies.sh │ ├── install_python_dependencies.sh │ ├── requirements-bionic.apt │ ├── requirements-bookworm.apt │ ├── requirements-bullseye.apt │ ├── requirements-buster.apt │ ├── requirements-focal.apt │ ├── requirements-jammy.apt │ ├── requirements-jessie.apt │ ├── requirements-noble.apt │ ├── requirements-stretch.apt │ ├── requirements-trusty.apt │ └── requirements-xenial.apt ├── webpack/ │ ├── common.config.js │ ├── dev.config.js │ └── prod.config.js └── {{cookiecutter.project_slug}}/ ├── __init__.py ├── conftest.py ├── contrib/ │ ├── __init__.py │ └── sites/ │ ├── __init__.py │ └── migrations/ │ ├── 0001_initial.py │ ├── 0002_alter_domain_unique.py │ ├── 0003_set_site_domain_and_name.py │ ├── 0004_alter_options_ordering_domain.py │ └── __init__.py ├── static/ │ ├── fonts/ │ │ └── .gitkeep │ ├── js/ │ │ └── project.js │ └── sass/ │ ├── custom_bootstrap_vars.scss │ └── project.scss ├── templates/ │ ├── 403.html │ ├── 403_csrf.html │ ├── 404.html │ ├── 500.html │ ├── account/ │ │ └── base_manage_password.html │ ├── allauth/ │ │ ├── elements/ │ │ │ ├── alert.html │ │ │ ├── badge.html │ │ │ ├── button.html │ │ │ ├── field.html │ │ │ ├── fields.html │ │ │ ├── panel.html │ │ │ └── table.html │ │ └── layouts/ │ │ ├── entrance.html │ │ └── manage.html │ ├── base.html │ ├── pages/ │ │ ├── about.html │ │ └── home.html │ └── users/ │ ├── user_detail.html │ └── user_form.html └── users/ ├── __init__.py ├── adapters.py ├── admin.py ├── api/ │ ├── __init__.py │ ├── schema.py │ ├── serializers.py │ └── views.py ├── apps.py ├── context_processors.py ├── forms.py ├── managers.py ├── migrations/ │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tasks.py ├── tests/ │ ├── __init__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── test_openapi.py │ │ ├── test_urls.py │ │ └── test_views.py │ ├── factories.py │ ├── test_admin.py │ ├── test_forms.py │ ├── test_managers.py │ ├── test_models.py │ ├── test_tasks.py │ ├── test_urls.py │ └── test_views.py ├── urls.py └── views.py