@@ -56,7 +56,7 @@ This creates your own copy under your account.
5656
5757## 💻 Step 4: Clone Your Fork
5858
59- ```
59+ ``` bash
6060git clone https://github.com/YOUR-USERNAME/IdentityTokens-EVM-Frontend.git
6161cd IdentityTokens-EVM-Frontend
6262```
@@ -65,7 +65,7 @@ cd IdentityTokens-EVM-Frontend
6565
6666## 🔗 Step 5: Add Upstream Remote
6767
68- ```
68+ ``` bash
6969git remote add upstream https://github.com/StabilityNexus/IdentityTokens-EVM-Frontend.git
7070git remote -v
7171```
@@ -76,7 +76,7 @@ git remote -v
7676
7777Never work on main.
7878
79- ```
79+ ``` bash
8080git checkout -b feature/short-description
8181```
8282
@@ -93,7 +93,7 @@ Examples:
9393
9494## 📦 Install Dependencies
9595
96- ```
96+ ``` bash
9797npm install
9898```
9999
@@ -117,7 +117,7 @@ Husky is used for pre-commit hooks.
117117
118118If needed:
119119
120- ```
120+ ``` bash
121121npm run prepare
122122```
123123
@@ -134,7 +134,7 @@ If commit fails, fix errors before retrying.
134134
135135## ▶️ Start Development Server
136136
137- ```
137+ ``` bash
138138npm run dev
139139```
140140
@@ -144,15 +144,15 @@ App runs locally (usually [http://localhost:3000](http://localhost:3000)).
144144
145145## 🏗 Build Project
146146
147- ```
147+ ``` bash
148148npm run build
149149```
150150
151151---
152152
153153## 🚀 Start Production Server
154154
155- ```
155+ ``` bash
156156npm run start
157157```
158158
@@ -166,19 +166,19 @@ Before committing:
166166
167167## 🔍 Run ESLint
168168
169- ```
169+ ``` bash
170170npm run lint
171171```
172172
173173## ✨ Format Code
174174
175- ```
175+ ``` bash
176176npm run format
177177```
178178
179179## ✅ Check Formatting
180180
181- ```
181+ ``` bash
182182npm run check-format
183183```
184184
@@ -232,7 +232,7 @@ Test wallet connection manually before PR.
232232
233233# 7️⃣ Commit Properly
234234
235- ```
235+ ``` bash
236236git add .
237237git commit -m " feat: short clear description"
238238```
@@ -252,7 +252,7 @@ Avoid vague messages like "update".
252252
253253Before pushing:
254254
255- ```
255+ ``` bash
256256git fetch upstream
257257git merge upstream/main
258258```
@@ -263,7 +263,7 @@ Resolve conflicts locally.
263263
264264# 9️⃣ Push Your Branch
265265
266- ```
266+ ``` bash
267267git push origin feature/short-description
268268```
269269
0 commit comments