Public
Like
createanappthatallowsuserstopostdailyhabits
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.
This directory contains the backend API for the Side Hustle Hub application.
index.ts: Main entry point for the APIdatabase/: Database schema and queriesroutes/: API route handlers
POST /api/users: Create a new userGET /api/users/:username: Get a user by username
GET /api/opportunities: Get all opportunitiesGET /api/opportunities/category/:category: Get opportunities by categoryPOST /api/opportunities: Create a new opportunity
GET /api/chat/rooms: Get all chat roomsGET /api/chat/rooms/:id: Get a specific chat roomGET /api/chat/rooms/:id/messages: Get messages for a chat roomPOST /api/chat/rooms/:id/messages: Post a message to a chat room
GET /: Serve the main applicationGET /frontend/*: Serve frontend filesGET /shared/*: Serve shared files