A full-stack application for job seekers to apply to job postings and chat with other job seekers.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── jobs.ts # Job-related API endpoints
│ │ ├── applications.ts # Application API endpoints
│ │ ├── chat.ts # Chat API endpoints
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono app entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React app
│ │ ├── JobBoard.tsx # Job listings component
│ │ ├── JobCard.tsx # Individual job card
│ │ ├── ApplicationForm.tsx # Job application form
│ │ ├── Chat.tsx # Chat room component
│ │ └── MyApplications.tsx # User's applications
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
The app will be available at the HTTP endpoint once deployed. Users can: