Skip to content

Commit 7ad892c

Browse files
authored
Merge pull request #10 from RNViththagan/Develop
Develop
2 parents 7b795dc + ca92c3f commit 7ad892c

File tree

4 files changed

+14
-24
lines changed

4 files changed

+14
-24
lines changed

README.md

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Software Recommender
1+
# Software Advisor
22

3-
The **Software Recommender** project provides software recommendations based on specific user task descriptions. Using **Node.js** in the backend, it connects to the **Google Gemini API** to generate AI-based recommendations. This repository contains the backend setup with a planned **Next.js** frontend.
3+
The **Software Advisor** project provides software recommendations based on specific user task descriptions. Using **Node.js** in the backend, it connects to the **Google Gemini API** to generate AI-based recommendations. This repository contains the backend setup with a planned **Next.js** frontend.
44

55
## Project Structure
66

@@ -17,34 +17,24 @@ The **Software Recommender** project provides software recommendations based on
1717

1818
1. **Clone the repository:**
1919
```bash
20-
git clone https://github.com/RNViththagan/software-recommender.git
20+
git clone https://github.com/RNViththagan/software-advisor.git
2121
```
22-
23-
2. **Navigate to the backend directory:**
24-
```bash
25-
cd software-recommender/backend
26-
```
27-
28-
3. **Install dependencies:**
22+
2. **Install dependencies:**
2923
```bash
3024
npm install
3125
```
3226

33-
4. **Set up environment variables:**
27+
3. **Set up environment variables:**
3428
- Create a `.env` file and add your Google Gemini API key:
3529
```
36-
GEMINI_API_KEY=your_api_key_here
30+
VITE_GEMINI_API_KEY=your_api_key_here
3731
```
3832

39-
5. **Run the backend server:**
33+
4. **Run project:**
4034
```bash
41-
npm start
42-
```
43-
The backend will be available at `http://localhost:5000`.
44-
45-
## Frontend Setup (Next.js)
46-
47-
The frontend will be built using **Next.js** (planned for later).
35+
npm run dev
36+
```
37+
4838

4939
## Contributing
5040

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "software-recommender",
2+
"name": "software-advisor",
33
"private": true,
44
"version": "0.0.0",
55
"type": "module",
6-
"homepage": "https://rnviththagan.github.io/software-recommender/",
6+
"homepage": "https://rnviththagan.github.io/software-advisor/",
77
"scripts": {
88
"dev": "vite",
99
"build": "vite build",

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { About } from "./pages/About";
55

66
function App() {
77
return (
8-
<Router basename="/software-recommender">
8+
<Router basename="/software-advisor">
99
<div className="min-h-screen bg-gray-50">
1010
<Header />
1111
<Routes>

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import react from "@vitejs/plugin-react";
33

44
// https://vitejs.dev/config/
55
export default defineConfig({
6-
base: "/software-recommender",
6+
base: "/software-advisor",
77
plugins: [react()],
88
optimizeDeps: {
99
exclude: ["lucide-react"],

0 commit comments

Comments
 (0)