Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .claude/.vcignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!venv
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
> **Version captured:** Claude Code v2.1.80 (March 2026)
> **Update policy:** Re-fetch canonical URL when Claude Code releases new Agent Teams features.

This is a **self-contained knowledge base** -- AI agents should NOT need to re-fetch the URL.
This is a **self-contained knowledge base** -- AI agents should NOT need to re-fetch the URL..

## Overview

Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ db.sqlite3-journal
.env
.env.*

# Node / pnpm / Turborepo monorepo
node_modules/
.turbo/
apps/frontend/.svelte-kit/
apps/frontend/build/

# Editors / OS
.DS_Store
.idea/
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions events/urls.py → apps/backend/events/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,13 @@
path("review/", views.review_dashboard, name="review_dashboard"),
path("review/venues/<slug:slug>/", views.review_venue_detail, name="review_venue_detail"),
path("review/venues/<slug:slug>/status/", views.review_set_status, name="review_set_status"),
# JSON API — consumed by the SvelteKit frontend
path("api/stats/", views.api_stats, name="api_stats"),
path("api/events/by-source/", views.api_events_by_source, name="api_events_by_source"),
path("api/events/by-category/", views.api_events_by_category, name="api_events_by_category"),
path("api/events/", views.api_events, name="api_events"),
path("api/organizers/<slug:slug>/", views.api_organizer_detail, name="api_organizer_detail"),
path("api/organizers/", views.api_organizers, name="api_organizers"),
path("api/venues/", views.api_venues, name="api_venues"),
path("api/scrapers/", views.api_scrapers, name="api_scrapers"),
]
Loading