A full-stack application for posting job opportunities and discussing them in a public chat room.
āāā backend/
ā āāā database/
ā ā āāā migrations.ts # Database schema setup
ā ā āāā queries.ts # Database query functions
ā āāā routes/
ā ā āāā jobs.ts # Job posting API routes
ā ā āāā chat.ts # Chat API routes
ā āāā index.ts # Main Hono server
āāā frontend/
ā āāā components/
ā ā āāā App.tsx # Main application component
ā ā āāā JobBoard.tsx # Job listings component
ā ā āāā JobForm.tsx # Job posting form
ā ā āāā ChatRoom.tsx # Chat room component
ā āāā index.html # Main HTML template
ā āāā index.tsx # Frontend entry point
āāā shared/
āāā types.ts # Shared TypeScript types
GET /api/jobs - Get all job postingsPOST /api/jobs - Create a new job postingGET /api/jobs/:id - Get a specific job postingGET /api/chat/messages - Get chat messagesPOST /api/chat/messages - Send a chat messageThe app is automatically deployed on Val Town. Visit the HTTP endpoint to start using the application.