Public
Like
testtownie
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.
index.ts
https://charmaine--4c0ea9b02c3711f0992d569c3dd06744.web.val.run
A modern, elegant blog built on Val Town with a clean design and simple content management.
- Clean, responsive design with Tailwind CSS
- Markdown support for blog posts
- SQLite database for content storage
- API endpoints for managing blog content
- Beautiful typography and reading experience
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ ├── posts.ts # Blog post routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── Header.tsx # Blog header
│ │ ├── Footer.tsx # Blog footer
│ │ ├── PostList.tsx # List of blog posts
│ │ └── PostView.tsx # Single post view
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
└── types.ts # Shared types
Visit the blog at the HTTP endpoint URL. To add new posts, use the /admin
route.