File size: 408 Bytes
3ca686a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b8aa51a
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
# Setup & Installation

## 1. Clone the Repository
```bash
git clone https://github.com/cyberalertnepal/aiapi
cd aiapi
```

## 2. Install Dependencies
```bash
pip install -r requirements.txt
```

## 3. Configure Environment
Create a `.env` file:
```env
SECRET_TOKEN=your_secret_token_here
```

## 4. Run the API
```bash
uvicorn app:app --host 0.0.0.0 --port 8000
```
[🔙 Back to Main README](../README.md)