FauxDoorz is a sophisticated vacation rental platform built with cutting-edge technologies including Next.js 14, MongoDB, NextAuth.js, and TailwindCSS. The platform enables users to discover beautiful vacation properties, search based on location and price range, and manage their own listings.
- Seamless Authentication - Secure user authentication powered by NextAuth.js
- Comprehensive Property Management - Create, view, edit, and manage property listings
- Advanced Search & Filtering - Find properties by location, price range, and amenities
- Responsive Design - Beautiful UI that works perfectly on all devices
- Interactive User Dashboard - Personalized dashboard for hosts and guests
- Real-time Form Validation - Immediate feedback during property creation and booking
- Image Management - Support for multiple property images with preview functionality
- Secure Session Handling - Robust session management with MongoDB
- Next.js 14 - React framework with server-side rendering
- React 18 - UI component library
- TailwindCSS - Utility-first CSS framework
- React Icons - Icon library
- Next.js API Routes - Serverless API endpoints
- MongoDB Atlas - Cloud database service
- Mongoose ODM - MongoDB object modeling
- NextAuth.js - Authentication solution
- bcrypt - Password hashing
- Node.js 18+
- MongoDB Atlas account
- npm or pnpm package manager
- Clone the repository
git clone https://github.com/yourusername/fauxdoorz.git
cd fauxdoorz
- Install dependencies
pnpm install
# or
npm install
- Set up environment variables
Create a
.env.local
file in the root directory:
MONGODB_URI=your_mongodb_connection_string
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your_nextauth_secret
- Start the development server
pnpm dev
# or
npm run dev
- Open your browser Navigate to http://localhost:3000 to see the application.
fauxdoorz/
├── components/ # React components
│ ├── common/ # Shared components (buttons, forms, etc.)
│ ├── dashboard/ # Dashboard-specific components
│ ├── layout/ # Layout components (navbar, footer)
│ └── ui/ # UI components
├── models/ # Mongoose models
├── pages/ # Next.js pages and API routes
│ ├── api/ # API endpoints
│ ├── auth/ # Authentication pages
│ ├── dashboard/ # User dashboard pages
│ └── properties/ # Property listing pages
├── public/ # Static assets
├── styles/ # Global styles
└── utils/ # Utility functions
GET/POST /api/auth/signin
- Sign in with credentialsGET/POST /api/auth/signout
- Sign out current userGET /api/auth/session
- Get current session data
GET /api/properties
- List all properties (with optional filters)POST /api/properties
- Create new propertyGET /api/properties/[id]
- Get property detailsPUT /api/properties/[id]
- Update propertyDELETE /api/properties/[id]
- Delete property
GET /api/users/me
- Get current user profilePUT /api/users/me
- Update user profile
{
name: String,
email: String,
password: String,
role: String, // 'user', 'host', 'admin'
properties: [ObjectId],
createdAt: Date,
updatedAt: Date
}
{
title: String,
description: String,
location: String,
pricePerNight: Number,
images: [String],
amenities: [String],
bedrooms: Number,
bathrooms: Number,
maxGuests: Number,
owner: ObjectId,
status: String, // 'available', 'booked', 'pending'
createdAt: Date,
updatedAt: Date
}
Required environment variables:
MONGODB_URI=your_mongodb_connection_string
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your_nextauth_secret_key
Optional environment variables:
NEXT_PUBLIC_MAPBOX_TOKEN=your_mapbox_token
CLOUDINARY_URL=your_cloudinary_url
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by Teheskhiel Fritz
```