Thank you for investing your time in contributing to our project!
- Install Node.js and npm.
- Install Git CLI.
- Install any code editor you prefer (e.g. Visual Studio Code (VS Code)).
-
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
-
Now clone the forked repository to your PC by running the following command in you terminale. (Don't forget to put your own github username between instead of
{{YOUR GITHUB USERNAME}}
).
git clone https://github.com/{{YOUR GITHUB USERNAME}}/nft-marketplace.git
-
Open the project folder or run this command
cd nft-marketplace
to change current working directory. -
Now run
npm install
to install all the dependencies that the project needs. -
You can also run
npm start
to run the project on a local server. -
You can now start contributing to the project.
You can commit to your repository every time you make a change to the code and then make a pull request to push all the changes to this original repository.
-
Run
git add .
to make git track your changes to all the files in the repository. -
Run
git commit -m "Message"
to commit and save a checkpoint to the last changes you have made (make sure to write a descriptive message to your changes). -
Run
git push origin main
to push the changes to your forked repository.
Go to your forked repository on Github, enter the pull requests
tab and click on the New pull request
button and give your pull request a descriptive title.