A community platform for sharing, donating, and exchanging plant cuttings, potted plants, and trees.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── auth.ts # User authentication
│ │ ├── plants.ts # Plant CRUD operations
│ │ ├── messages.ts # Messaging system
│ │ └── static.ts # Static file serving
│ └── index.ts # Main Hono app entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── Profile.tsx # User profile management
│ │ ├── PlantCard.tsx # Plant listing display
│ │ ├── PlantForm.tsx # Add/edit plant form
│ │ └── Messages.tsx # Messaging interface
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
The app is automatically deployed on Val Town. Visit the HTTP endpoint to start using the application.