@@ -39,39 +39,39 @@ If running locally navigate to `http://localhost:8080`
39391 . First of all, ` fork ` this repo.
40402 . Next -> clone your branch.
4141
42- ``` bash
43- git clone https://github.com/< your-user-name> /dashboard.git
44- ```
42+ ``` bash
43+ git clone https://github.com/< your-user-name> /dashboard.git
44+ ```
4545
46- ` note ` : replace ` <your-user-name> ` with your github username.
46+ ` note ` : replace ` <your-user-name> ` with your github username.
4747
48483 . Move to cloned dir and if you want to make changes to our codebase then create new branch
4949
50- ``` bash
51- cd dashboard/
50+ ``` bash
51+ cd dashboard/
5252
53- git checkout -b < your-branch-name>
54- ```
53+ git checkout -b < your-branch-name>
54+ ```
5555
56564 . Install [ nvm] ( https://github.com/nvm-sh/nvm?tab=readme-ov-file#install--update-script )
5757
58585 . Use similar version
5959
60- ``` bash
61- nvm use
62- ```
60+ ``` bash
61+ nvm use
62+ ```
6363
64646 . Install the dependencies
6565
66- ``` bash
67- npm ci
68- ```
66+ ``` bash
67+ npm ci
68+ ```
6969
70707 . Run the ` dev ` script
7171
72- ``` bash
73- npm run dev
74- ```
72+ ``` bash
73+ npm run dev
74+ ```
7575
7676### Inside kubernetes cluster
7777
@@ -96,9 +96,9 @@ kubectl apply -f deployment/volcano-dashboard.yaml
9696
9797- Run prettier to format the code before commiting changes:
9898
99- ``` bash
100- npm run format
101- ```
99+ ``` bash
100+ npm run format
101+ ```
102102
103103## Submitting Pull Requests
104104
@@ -110,32 +110,32 @@ How to [signoff](https://git-scm.com/docs/git-commit#Documentation/git-commit.tx
110110
1111111 . Commit Your Changes
112112
113- ``` bash
114- git commit -s -m " Your commit message here"
115- ```
113+ ``` bash
114+ git commit -s -m " Your commit message here"
115+ ```
116116
1171172 . Verify Your Commit
118118
119- To check if your commit includes a sign-off, run:
119+ To check if your commit includes a sign-off, run:
120120
121- ``` bash
122- git log -1
123- ```
121+ ``` bash
122+ git log -1
123+ ```
124124
125- You should see a line like:
125+ You should see a line like:
126126
127- ``` bash
128- Signed-off-by: Your Name < your.email@example.com>
129- ```
127+ ``` bash
128+ Signed-off-by: Your Name < your.email@example.com>
129+ ```
130130
131- If you forgot to sign off, amend the commit with:
131+ If you forgot to sign off, amend the commit with:
132132
133- ``` bash
134- git commit --amend -s
135- ```
133+ ``` bash
134+ git commit --amend -s
135+ ```
136136
1371373 . Push Your Changes
138138
139- ``` bash
140- git push origin < your-branch>
141- ```
139+ ``` bash
140+ git push origin < your-branch>
141+ ```
0 commit comments