Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 1.51 KB

CONTRIBUTING.md

File metadata and controls

66 lines (40 loc) · 1.51 KB

Contributing to Social Banner

We are going to create a pr. You need to know basic git and github commands to make a pr. If you don't know about it, check out Avneesh's Git and Github crash course

Click on fork in the top left corner of your screen. Clone the repo you have been redirected to

git clone url_redirected_to

Installing dependencies

If you use npm then run

npm install

This project is using npm so stick to npm

Creating a new branch

git checkout -b new-feature

Starting server

npm run dev

Environment Variables

To run this project, you will need to add the following environment variables to your .env.local file

UNSPLASH_ACCESS_KEY

1. You can use these development credentials for new features

UNSPLASH_ACCESS_KEY=qWUy4S56DsViI-OSWNKcpB4O_bdwQesO8FlXXFG5GXA

Restart the server

  • Kill the current server and start a new server
npm run dev

🛡️ License

This project is licensed under the MIT License - see the LICENSE file for details.

Creating a PR

Checkout this article by Avneesh to make a PR

You have successfully created a pull request and I will review and merge it soon.

Contributors