Secret Listings AU
Exclusive off-market properties from top agents across Australia
System Status
All systems operational
Ready
Next.js 15 App RouterReady
Prisma ORM + PostgreSQLReady
Zod ValidationReady
Shadcn UI ComponentsQuick Links
Navigate to key features
Getting Started
Set up your database and start ingesting listings
1. Configure Database
Add your PostgreSQL connection string to .env:
DATABASE_URL="postgresql://user:password@localhost:5432/secretlistings"2. Run Database Migration
npx prisma db push3. Test Webhook
Send a test listing using the sample payload:
curl -X POST http://localhost:3000/api/webhook/listings \
-H "Content-Type: application/json" \
-d @test-payload.json