This is a Next.js project bootstrapped with create-next-app
.
First, Clone this repo, cd into correct directory then command:
yarn
#or
npm install
to install all dependencies then add a '.env' file in the root directory of this project. And fill the following environment variables with proper value:
NEXT_PUBLIC_REST_API_ENDPOINT='http://localhost/'#For development 'http://localhost', For production this should be your Api end-point
NEXT_PUBLIC_NEXTAUTH_URL='http://localhost:3000'#For development 'http://localhost:3000', For production this should be 'yourdomain.com'
NEXT_PUBLIC_SITE_URL='http://localhost:3000'#For development 'http://localhost:3000', For production this should be 'yourdomain.com'
#For Social Authentication
GOOGLE_CLIENT_ID=YOUR_GOOGLE_CLIENT_ID
GOOGLE_CLIENT_SECRET=YOUR_GOOGLE_CLIENT_SECRET
SECRET=YOUR_SECRET_KEY
Then run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.tsx
. The page auto-updates as you edit the file.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
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.