A simple personal Customer Relationship Management (CRM) system built on Val Town.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ └── api.ts # API endpoints
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application component
│ │ ├── ContactList.tsx # List of contacts
│ │ ├── ContactDetail.tsx # Contact details view
│ │ ├── ContactForm.tsx # Add/edit contact form
│ │ └── InteractionForm.tsx # Add interaction form
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
└── types.ts # Shared types and interfaces