A full-stack task manager application built on Val Town.
/
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database queries
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── tasks.ts # Task management routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── Login.tsx # Login component
│ │ ├── Register.tsx # Registration component
│ │ ├── TaskList.tsx # Task list component
│ │ └── TaskForm.tsx # Task creation/editing form
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared type definitions