JobApp
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v12View latest version
This directory contains the server-side code for the Job Board with Chat application.
index.ts- Main entry point for the Hono API server- Database tables:
job_postings- Stores job listingschat_messages- Stores chat messages
GET /api/jobs- Get all job postingsPOST /api/jobs- Create a new job posting
GET /api/chat- Get chat messages (most recent 100)POST /api/chat- Post a new chat message
id- INTEGER PRIMARY KEYtitle- TEXTdescription- TEXTcompany- TEXTlocation- TEXTsalary- TEXT (optional)contact- TEXTcreated_at- TEXT (ISO date string)
id- INTEGER PRIMARY KEYusername- TEXTmessage- TEXTcreated_at- TEXT (ISO date string)