Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.32 KB

README.md

File metadata and controls

55 lines (39 loc) · 1.32 KB

This is a repository for a Full Stack Airbnb example with Next.js 13 App Router: React, Tailwindcss, Prisma, MongoDB, NextAuth. this project is for learning purposes and acknowledge of new technologies of web development

Getting Started

First install the dependencies:

npm install
# or
yarn install
# or
pnpm install

Setup .env file

DATABASE_URL=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GITHUB_ID=
GITHUB_SECRET=
NEXTAUTH_SECRET=

Setup Prisma

npx prisma db push

Then, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.