A full-stack application for posting job opportunities and discussing them in a public chat room.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── jobs.ts # Job posting API routes
│ │ └── chat.ts # Chat API routes
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── JobBoard.tsx # Job listings component
│ │ ├── JobForm.tsx # Job posting form
│ │ └── ChatRoom.tsx # Chat interface
│ ├── 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 a new job postingDELETE /api/jobs/:id
- Delete a job postingGET /api/chat/messages
- Get recent chat messagesPOST /api/chat/messages
- Send a new chat messageThis app runs on Val Town. The backend serves both the API and the frontend files.
Visit the HTTP endpoint to access the application.