A full-stack application for posting IT job opportunities with a public chat room for discussing opportunities.
āāā backend/
ā āāā database/
ā ā āāā migrations.ts # Database schema setup
ā ā āāā queries.ts # Database query functions
ā āāā routes/
ā ā āāā jobs.ts # Job posting endpoints
ā ā āāā chat.ts # Chat endpoints
ā āāā index.ts # Main API server
āāā frontend/
ā āāā components/
ā ā āāā App.tsx # Main application component
ā ā āāā JobBoard.tsx # Job listings component
ā ā āāā JobForm.tsx # Job posting form
ā ā āāā ChatRoom.tsx # Chat interface
ā ā āāā JobCard.tsx # Individual job display
ā āāā 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 new job postingGET /api/jobs/:id - Get specific job postingGET /api/chat/messages - Get chat messagesPOST /api/chat/messages - Send new messageGET /api/chat/stream - Server-sent events for real-time updatesThis is a Val Town project. The main entry point is backend/index.ts which serves both the API and frontend files.