This directory contains the server-side code for the Job Board with Chat application.
index.ts - Main entry point with Hono API routesdatabase/ - Database setup and queries
migrations.ts - Database schema definitionsqueries.ts - Database query functionsGET /api/jobs - Get all job listingsPOST /api/jobs - Create a new job listingGET /api/messages - Get recent chat messagesPOST /api/messages - Create a new chat messageThe application uses SQLite for data storage with two main tables:
jobs_v1 - Stores job listingsmessages_v1 - Stores chat messages