-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToRun.txt
More file actions
49 lines (28 loc) · 994 Bytes
/
Copy pathToRun.txt
File metadata and controls
49 lines (28 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
## 🏃 Running the InsightForge
This project consists of three services to run it:
### 1️⃣ Start the Python Celery Worker
Open a First terminal and run:
{```bash
cd worker-python
python -m celery -A celery_app:app worker --loglevel=info --pool=solo
```
This worker processes background tasks such as deepfake analysis and model inference.
---}
### 2️⃣ Start the Node.js Backend Server
Open a Second terminal and run:
{```bash
cd backend-node
node index.js
```}
The backend handles API requests, user management, and communication with other services.
---
### 3️⃣ Start the FastAPI Service
Open Third terminal and run:
```bash
cd worker-python
python -m uvicorn api:fastapi_app --port 8000 --reload
```
The FastAPI service exposes machine learning endpoints for prediction and model inference.
---
Start the services in the following orde
Once all services are running, the Deepfake Detection System will be ready to process image and video analysis requests.