Krish Patel commited on
Commit ·
c982962
1
Parent(s): 882b3fd
Updated ReadMe
Browse files
README.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
## Instructions to Run
|
| 6 |
+
|
| 7 |
+
1. Clone the repository
|
| 8 |
+
```bash
|
| 9 |
+
git clone https://github.com/HeheBoi0769/Fact_Checker.git
|
| 10 |
+
```
|
| 11 |
+
2. Navigate to the project directory
|
| 12 |
+
```bash
|
| 13 |
+
cd complete_nlp_stuff
|
| 14 |
+
```
|
| 15 |
+
3. Install the requirements
|
| 16 |
+
```bash
|
| 17 |
+
pip install -r requirements.txt
|
| 18 |
+
```
|
| 19 |
+
4. Install frontend dependencies
|
| 20 |
+
```bash
|
| 21 |
+
cd nexus-frontend
|
| 22 |
+
npm install
|
| 23 |
+
```
|
| 24 |
+
5. Start the frontend server
|
| 25 |
+
```bash
|
| 26 |
+
npm run dev
|
| 27 |
+
```
|
| 28 |
+
6. Start the backend server in a different terminal (root directory)
|
| 29 |
+
```bash
|
| 30 |
+
uvicorn app:app --reload
|
| 31 |
+
```
|
| 32 |
+
7. Open the frontend in your browser and start using the application
|