A full-stack application for house owners to post rental properties and engage in public discussions about rental prices.
āāā backend/
ā āāā database/
ā ā āāā migrations.ts # Database schema
ā ā āāā queries.ts # Database operations
ā āāā routes/
ā ā āāā properties.ts # Property CRUD operations
ā ā āāā chat.ts # Chat functionality
ā āāā index.ts # Main server entry point
āāā frontend/
ā āāā components/
ā ā āāā App.tsx # Main app component
ā ā āāā PropertyList.tsx # Property listings
ā ā āāā PropertyForm.tsx # Add new property form
ā ā āāā ChatRoom.tsx # Chat interface
ā āāā index.html # HTML template
ā āāā index.tsx # Frontend entry point
āāā shared/
āāā types.ts # Shared TypeScript types
GET /api/properties - Get all propertiesPOST /api/properties - Add new propertyGET /api/chat/messages - Get chat messagesPOST /api/chat/messages - Send chat message