This is a Next.js project bootstrapped with create-next-app
. USER AUTHENTICATION is under development.
- Install Node.js
Node.js is required to run JavaScript code on the server side. Download and install it from the official website, or if you’re using a package manager, use one of the following commands:
• macOS (with Homebrew):
brew install node
• Windows (with Chocolatey):
choco install nodejs
- Package Manager
You can use npm, yarn, or pnpm to manage dependencies for the project. If Node.js is already installed, npm is included. You may also choose to install Yarn or pnpm:
• Yarn:
npm install --global yarn
• pnpm:
npm install --global pnpm
- Clone the Repository Use Git to clone the repository to your local machine. Replace your-username and your-repo with the actual GitHub username and repository name:
git clone https://github.com/your-username/your-repo.git
- Navigate into the Project Directory Move into the project directory to prepare for further setup:
cd your-repo
- Install Project Dependencies To install dependencies, use one of the following commands depending on your package manager:
npm install
or
yarn install
or
pnpm install
This will install all packages listed in package.json, which are necessary to run the application.
Now that dependencies are installed, start the development server:
npm run dev
or
yarn dev
or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
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 with Vercel , created by the same team behind Next.js. To deploy, follow these steps:
1.Push your code to GitHub, GitLab, or Bitbucket.
2.Sign in toVercel .
3.Connect your repository.
4.Configure deployment settings if needed.
For more details, see the Next.js deployment documentation .