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 endpoints
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── JobForm.tsx # Job posting form
│ │ ├── JobList.tsx # Job listings
│ │ └── ChatRoom.tsx # Chat room component
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
└── types.ts # Shared types and interfaces