Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed existing contributing guidelines #37

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ After cloning the repository, change the current working directory to the reposi


```
cd hack4bengal.github.io
cd s3
```
Before making any changes, make sure to always create a new branch. To create a new brach run the following command:

Expand All @@ -34,6 +34,15 @@ git checkout -b branch-name
```
You can run `git branch` command to check your branch status.

## Start the server

After successfully making a branch, run the project by using the following commands:

```
npm install
npm run dev
```

## Make changes

Now you are all set to make changes. For that you can use any text editor, but I will recommend using Vs Code as it feature rich and easy to use. If VS Code is already installed on your machine, run the following command:
Expand Down