This directory contains the server-side code for the Job Board application.
index.ts - Main entry point for the Hono API serverdatabase/ - Database setup and queries
migrations.ts - Database schema definitionsqueries.ts - Database query functionsGET /api/users - Get all usersPOST /api/users - Create a new user
{ "username": "string" }GET /api/jobs - Get all job listingsPOST /api/jobs - Create a new job listing
{ "title": "string", "company": "string", "description": "string", "location": "string", "contactEmail": "string", "postedBy": "string" }
GET /api/messages - Get chat messages
limit (optional, default: 50)POST /api/messages - Send a new chat message
{ "content": "string", "username": "string" }