Secret Listings AU

Exclusive off-market properties from top agents across Australia

System Status
All systems operational
Ready
Next.js 15 App Router
Ready
Prisma ORM + PostgreSQL
Ready
Zod Validation
Ready
Shadcn UI Components
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 push

3. 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