Spaces:
Sleeping
Sleeping
Lalit Mahale
commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -25,6 +25,23 @@
|
|
| 25 |
```bash
|
| 26 |
pip install -r requirements.txt
|
| 27 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
## Usage
|
| 30 |
1. Start the application:
|
|
|
|
| 25 |
```bash
|
| 26 |
pip install -r requirements.txt
|
| 27 |
```
|
| 28 |
+
4. **Configure Database Credentials and API Key**:
|
| 29 |
+
- Open `config.py`.
|
| 30 |
+
- Add your **database credentials** and **Gemini API key** in the format below:
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
# config.py
|
| 34 |
+
db_configuration = {
|
| 35 |
+
"USER": "your_database_user",
|
| 36 |
+
"PASSWORD": "your_database_password",
|
| 37 |
+
"PORT": "your_database_port",
|
| 38 |
+
"DB": "your_database_name",
|
| 39 |
+
"HOST": "your_database_host"
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
API_KEY = "your_gemini_api_key"
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
|
| 46 |
## Usage
|
| 47 |
1. Start the application:
|