untitled-2706
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v10View latest version
A comprehensive career coaching platform featuring blogs, public chat, and appointment booking.
- Blog Section: Read career advice and coaching articles
- Public Chat Room: Real-time community discussions
- Appointment Booking: Schedule 1-on-1 coaching sessions
- Responsive Design: Works on all devices
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── blog.ts # Blog API endpoints
│ │ ├── chat.ts # Chat API endpoints
│ │ └── appointments.ts # Booking API endpoints
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── Blog.tsx # Blog section
│ │ ├── Chat.tsx # Chat room
│ │ └── Booking.tsx # Appointment booking
│ ├── index.html # Main HTML template
│ ├── index.tsx # Frontend entry point
│ └── style.css # Custom styles
└── shared/
└── types.ts # Shared TypeScript types
- Backend: Hono (TypeScript API framework)
- Database: SQLite
- Frontend: React with TypeScript
- Styling: TailwindCSS
- Real-time: WebSocket for chat
The application is automatically deployed on Val Town. Visit the HTTP endpoint to access the website.