A full-stack application to track and manage job postings.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ └── jobs.ts # Job-related API endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React component
│ │ ├── JobForm.tsx # Form to add new jobs
│ │ └── JobList.tsx # Display job listings
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
GET /api/jobs - Get all job postingsPOST /api/jobs - Create a new job postingPUT /api/jobs/:id - Update a job postingDELETE /api/jobs/:id - Delete a job postingThis is a Val Town project. The backend runs on Hono with SQLite for data storage, and the frontend uses React with TailwindCSS for styling.