A full-stack application that allows users to post job opportunities and discuss 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
│ │ └── Chat.tsx # Chat room component
│ ├── 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 postingGET /api/chat - Get chat messagesPOST /api/chat - Send a chat messageThe app is automatically deployed on Val Town. Visit the HTTP endpoint to start using the application.