A simple application that allows users to:
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/
│ │ ├── jobs.ts # Job posting routes
│ │ ├── chat.ts # Chat message routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── JobForm.js # Job posting form
│ │ ├── JobList.js # Job listings
│ │ └── ChatRoom.js # Chat functionality
│ ├── index.html # Main HTML template
│ ├── app.js # Frontend JS entry point
│ └── style.css # Additional styles
└── shared/
└── types.ts # Shared types and interfaces