Skip to content
Open
Show file tree
Hide file tree
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: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,17 @@ Welcome to GSSoC! Here's how the contribution flow works for this project:
```bash
git checkout -b your-feature-name
```
5. **Install dependencies**:
```bash
npm install
```
6. **Start the local development server**:
```bash
npm run dev
```

The dev server uses Nodemon and automatically restarts when backend files
such as `server.js`, controllers, or routers change.

---

Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,19 @@ GEMINI_API_KEY=your_gen_ai_key_here
## ▶️ Run Locally

```bash
node server.js
npm run dev
```
Open → http://localhost:3000

`npm run dev` starts the backend with Nodemon, so changes to `server.js`,
controllers, routers, and other backend files automatically restart the server.

For a production-style run without file watching:

```bash
npm start
```

---

## Project Structure
Expand Down
3 changes: 3 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ body {
color: var(--color-text-secondary);
padding: 2px 8px;
border-radius: 12px;
border: 1px solid transparent;
transition: all 0.2s;
}

Expand Down Expand Up @@ -2006,6 +2007,7 @@ body {
color: var(--color-text-secondary);
padding: 2px 8px;
border-radius: 12px;
border: 1px solid transparent;
transition: all 0.2s;
}

Expand Down Expand Up @@ -3192,6 +3194,7 @@ body {
color: var(--color-text-secondary);
padding: 2px 8px;
border-radius: 12px;
border: 1px solid transparent;
transition: all 0.2s;
}

Expand Down
Loading