We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to create an explanation page for the project directory structure so that new devs can understand where everything is and should go.
project_structure.md
All the project files (some project-specific content omitted)
├── app │ ├── core │ │ ├── admin.py │ │ ├── api │ │ │ ├── permissions.py │ │ │ ├── serializers.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── apps.py │ │ ├── initial_data/ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── ... │ │ │ └── max_migration.txt │ │ ├── models.py │ │ ├── scripts/ │ │ ├── tests │ │ │ ├── conftest.py │ │ │ ├── test_api.py │ │ │ ├── test_models.py │ │ │ └── test_permissions.py │ │ └── utils │ │ └── jwt.py │ ├── data │ │ └── migrations │ │ ├── ... │ │ └── max_migration.txt │ ├── Dockerfile │ ├── entrypoint.sh │ ├── erd.png │ ├── manage.py │ ├── peopledepot │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── requirements.in │ ├── requirements.txt │ ├── scripts │ │ └── convert.py │ ├── setup.cfg │ └── tmp.md ├── CONTRIBUTING.md ├── docker-compose.yml ├── docs/ ├── LICENSE ├── mkdocs.yml ├── pyproject.toml ├── README.md └── scripts ├── buildrun.sh ├── check-migrations.sh ├── createsuperuser.sh ├── db.sh ├── erd.sh ├── lint.sh ├── loadenv.sh ├── logs.sh ├── migrate.sh ├── precommit-check.sh ├── run.sh ├── start-local.sh ├── test.sh └── update-dependencies.sh
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Overview
We need to create an explanation page for the project directory structure so that new devs can understand where everything is and should go.
Action Items
project_structure.md
and lay out and explain the project structureResources/Instructions
All the project files (some project-specific content omitted)
tree -L 4 -I __pycache__ -I venv -I __init__.py
The text was updated successfully, but these errors were encountered: