This directory contains the server-side code for the House Hunter application.
index.ts - Main entry point for the backenddatabase/ - Database schema and queriesroutes/ - API route handlersGET /api/properties - Get all properties with optional filtering
minPrice - Minimum pricemaxPrice - Maximum priceminBedrooms - Minimum number of bedroomsminBathrooms - Minimum number of bathroomscity - Filter by citystate - Filter by statesearchTerm - Search in title, description, address, and cityGET /api/properties/:id - Get a single property by IDGET /api/properties/cities - Get list of available citiesGET /api/properties/states - Get list of available statesGET /api/project-info - Get information about the project for the view source linkThe backend serves static files from the /frontend and /shared directories.