A comprehensive platform for freelancers and virtual assistants to connect, collaborate, and grow their businesses.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── jobs.ts # Job posting routes
│ │ ├── users.ts # User profile routes
│ │ ├── chat.ts # Chat functionality
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono app entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React app
│ │ ├── Header.tsx # Navigation header
│ │ ├── JobBoard.tsx # Job listings
│ │ ├── UserProfile.tsx # User profiles
│ │ ├── Chat.tsx # Real-time chat
│ │ └── Auth.tsx # Login/register forms
│ ├── index.html # Main HTML template
│ ├── index.tsx # React entry point
│ └── style.css # Custom styles
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
GET /
- Main applicationPOST /api/auth/register
- User registrationPOST /api/auth/login
- User loginGET /api/jobs
- List jobsPOST /api/jobs
- Create job postingGET /api/users/:id
- Get user profilePUT /api/users/:id
- Update user profileGET /api/chat/messages
- Get chat messagesPOST /api/chat/messages
- Send chat messageGET /api/chat/stream
- SSE chat streamNo API keys required - uses Val Town's built-in services.