Lalit Mahale commited on
Commit
f1d03e9
·
unverified ·
1 Parent(s): 5d17632

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
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: