A simple application that allows users to:
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ ├── jobs.ts # Job posting endpoints
│ │ ├── chat.ts # Chat message endpoints
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── jobs.js # Job listing and form components
│ │ └── chat.js # Chat room component
│ ├── index.html # Main HTML template
│ ├── app.js # Frontend JS entry point
│ └── style.css # Additional styles
└── shared/
└── types.ts # Shared types and utilities
GET /api/jobs - List all job postingsPOST /api/jobs - Create a new job postingGET /api/chat - Get chat messagesPOST /api/chat - Post a new chat message