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 posting components
│ │ └── chat.js # Chat components
│ ├── index.html # Main HTML template
│ ├── app.js # Frontend JS entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared types and interfaces