Welcome to GlassFeed

Your NextJS application is ready for deployment to Dokploy! ✨

🏥 Health Check

Verify database connectivity and system health

GET /api/health

👥 Users API

Manage users with full CRUD operations

GET /api/users

📝 Posts API

Create and retrieve posts with user relationships

GET /api/posts

📚 Documentation

Learn more about Next.js and deployment

Next.js Docs

🚀 Quick Start

# Get all users
curl http://localhost:3000/api/users
# Create a new user
curl -X POST http://localhost:3000/api/users \
  -H "Content-Type: application/json" \
  -d '{"email":"test@example.com","name":"Test User"}'