Skip to content

Latest commit

 

History

History
64 lines (41 loc) · 1.64 KB

CONTRIBUTING.md

File metadata and controls

64 lines (41 loc) · 1.64 KB

Contribution Rules 📚 :

  • Do NOT remove other content.
  • Try to keep pull requests small to minimize merge conflicts.
  • Don't push Yarn.lock and Package-lock.json in your commit.

Getting started 🤩🤟:

  • Fork this repo (button on top).

  • Clone on your local machine.

      git clone https://github.com/amupedia2021/Project-Amupedia.git
    
  • Navigate to the project directory.

      cd Project-Amupedia
    
  • Add a new remote branch

      git remote add develop https://github.com/{YOUR_USERNAME}/Project-Amupedia
    
  • Create a new branch

      git checkout -b new-branch
    
  • Add all the changes that you have made

      git add .
    
  • Commit your changes

      git commit -m "{Message}"
    
  • Then push

      git push devolp new-branch
    

Set Up Locally:

  • Install Dependencies:
npm install
  • Build the project:
npm run buld
  • Start dev server:
npm run 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.