con un clic
repo-navigation
Repository layout and where to find code
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Repository layout and where to find code
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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
Basado en la clasificación ocupacional SOC
| 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/