with one click
repo-navigation
Repository layout and where to find code
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Repository layout and where to find code
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | repo-navigation |
| description | Repository layout and where to find code |
.
├── app/ # Main Django application
├── deployment/ # Infrastructure and deployment configs
├── doc/ # Project documentation
├── .github/instructions/ # File-scoped AI coding guidance
├── .agents/skills/ # AI agent skill files (this directory)
├── agents.md # Canonical AI agent policy
├── docker-compose.yml # Docker Compose for local/dev environment
├── DEPLOYMENT.md # Production deployment walkthrough
├── CONTRIBUTING.md # Contributor guidelines
└── README.rst # Project overview
app/app/
├── eventyay/ # Core Django application package
├── tests/ # Test suite
├── pyproject.toml # Project metadata and dependencies
└── manage.py # Django management entry point
app/eventyay/ (selected directories)| Directory | Purpose |
|---|---|
api/ | REST API endpoints (Django REST Framework) |
agenda/ | Agenda and timetable domain logic |
base/ | Shared models (base/models/), utilities, middleware, and forms (base/forms/) |
cfp/ | Call-for-proposals and review workflows |
control/ | Organiser/back-office views, forms, and URLs |
presale/ | Attendee-facing (ticket purchase) views and forms |
orga/ | Organiser-facing event management flows and views |
event/ | Event domain models and related business logic |
common/ | Cross-cutting helpers shared across modules |
config/ | Application configuration and settings |
plugins/ | Plugin infrastructure |
static/ | Static assets (CSS, JS, images) |
jinja-templates/ | Jinja HTML templates |
locale/ | Translation files |
mail/ | Email rendering and sending |
celery.py / celery_app.py | Celery task configuration |
This table is intentionally non-exhaustive and focuses on high-traffic modules.
Note: Models, forms, and templates are distributed inside sub-apps (e.g.
base/models/,control/forms/,presale/templates/), not in standalone top-level directories.
deployment/deployment/
├── docker-compose.yml # Production Compose file
├── env.sample # Sample environment variables
├── env.dev.sample # Sample dev environment variables
└── nginx/ # Nginx configuration
doc/Contains extended project documentation written in reStructuredText or Markdown.
app/eventyay/<sub-app>/models.py or app/eventyay/base/models/app/eventyay/api/app/eventyay/<sub-app>/forms.py or app/eventyay/<sub-app>/forms/python manage.py makemigrations from app/app/tests/Steps for creating or modifying Django forms and adding validation
Steps for adding a new Django REST Framework API endpoint
Steps for creating or modifying a Django model
Steps for initiating the Django development server without Docker
Steps for generating and applying Django migrations
Docker Compose, container services, deployment