A comprehensive platform for discovering local events and connecting with other attendees through real-time chat.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── events.ts # Event CRUD operations
│ │ ├── chat.ts # Chat functionality
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── EventList.tsx # Event discovery interface
│ │ ├── EventForm.tsx # Event creation form
│ │ ├── ChatRoom.tsx # Chat interface
│ │ └── LocationPicker.tsx # Location selection
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types