Job Board & Chat App

A simple web application where users can post job opportunities and discuss them in a public chat room.

Features

  • Job Board: Post job opportunities with title, description, company, and location
  • Public Chat: Real-time chat room for networking and discussions
  • No Authentication: Simple name/nickname field for posts and messages
  • Mobile-Friendly: Responsive design using TailwindCSS

Project Structure

├── backend/
│   ├── database/
│   │   ├── migrations.ts    # Database schema setup
│   │   └── queries.ts       # Database query functions
│   ├── routes/
│   │   ├── jobs.ts         # Job posting endpoints
│   │   └── chat.ts         # Chat message endpoints
│   └── index.ts            # Main Hono server
├── frontend/
│   ├── components/
│   │   ├── App.tsx         # Main application component
│   │   ├── JobBoard.tsx    # Job posting and listing
│   │   └── ChatRoom.tsx    # Chat interface
│   ├── index.html          # Main HTML template
│   └── index.tsx           # Frontend entry point
└── shared/
    └── types.ts            # Shared TypeScript types

Tech Stack

  • Backend: Hono (TypeScript API framework)
  • Database: SQLite
  • Frontend: React with TypeScript
  • Styling: TailwindCSS
  • Platform: Val Town

API Endpoints

  • GET /api/jobs - Get all job posts
  • POST /api/jobs - Create a new job post
  • GET /api/chat - Get chat messages
  • POST /api/chat - Send a chat message

Getting Started

The app is automatically deployed on Val Town. Visit the HTTP endpoint to use the application.