Public
Like
ALX
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
A collaborative web application for collecting and sharing crochet tutorials with your team. This app allows team members to:
- Browse a collection of crochet tutorials
- Add new tutorials to the collection
- Track progress on crochet projects
- Filter and search for specific tutorials
- Collaborate with team members on projects
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database queries
│ ├── index.ts # Main API entry point
│ └── routes/ # API routes
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── TutorialList.tsx # List of tutorials
│ │ ├── TutorialForm.tsx # Form for adding tutorials
│ │ └── TutorialCard.tsx # Individual tutorial display
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared type definitions
- Backend: Hono (API framework), SQLite (database)
- Frontend: React, TailwindCSS
- Shared: TypeScript for type safety
Access the application at the provided URL. No login required - this is designed for team collaboration with shared access.