SANDRAMSC commited on
Commit
abac3d6
2 Parent(s): e6c2813 bb581cd

Merge pull request #30 from sandramsc/main

Browse files
Files changed (1) hide show
  1. README.md +21 -3
README.md CHANGED
@@ -57,19 +57,37 @@
57
 
58
  ### Install locally
59
 
 
 
60
  1. Clone the repository:
61
  ```bash
62
  $ git clone https://github.com/eliawaefler/DocVerifyRAG.git
63
  ```
64
 
65
- 2. Navigate to the project directory:
66
  ```bash
67
- $ cd DocVerifyRAG
68
  ```
69
 
70
  3. Install dependencies:
71
  ```bash
72
- $ pip install -r requirements.txt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  ```
74
 
75
  ### Install using Docker
 
57
 
58
  ### Install locally
59
 
60
+ #### Step 1 - Frontend
61
+
62
  1. Clone the repository:
63
  ```bash
64
  $ git clone https://github.com/eliawaefler/DocVerifyRAG.git
65
  ```
66
 
67
+ 2. Navigate to the frontend directory:
68
  ```bash
69
+ $ cd DocVerifyRAG/frontend
70
  ```
71
 
72
  3. Install dependencies:
73
  ```bash
74
+ $ npm install
75
+ ```
76
+ 4. Run project:
77
+ ```bash
78
+ $ npm run dev
79
+ ```
80
+
81
+ #### Step 2 - Backend
82
+
83
+ 1. Navigate to the backend directory:
84
+ ```bash
85
+ $ cd DocVerifyRAG/backend
86
+ ```
87
+
88
+ 2. Install dependencies:
89
+ ```bash
90
+ $ $ pip install -r requirements.txt
91
  ```
92
 
93
  ### Install using Docker