Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dhirenmathur authored Jan 24, 2025
1 parent 2dd2acb commit c4e5a83
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,21 @@ Potpie provides a set of tools that agents can use to interact with the knowledg
1. **Prepare Your Environment**
- Create a `.env` file based on the `.env.template`
- Add the following required configurations:
```bash
isDevelopmentMode=enabled
ENV=development
OPENAI_API_KEY=<your-openai-key>
```
```bash
isDevelopmentMode=enabled
ENV=development
OPENAI_API_KEY=<your-openai-key>
POSTGRES_SERVER=postgresql://postgres:mysecretpassword@localhost:5432/momentum
NEO4J_URI=bolt://127.0.0.1:7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=mysecretpassword
REDISHOST=127.0.0.1
REDISPORT=6379
BROKER_URL=redis://127.0.0.1:6379/0
CELERY_QUEUE_NAME=dev
defaultUsername=defaultuser
PROJECT_PATH=projects #repositories will be downloaded/cloned to this path on your system.
```
- Create a Virtual Environment using Python 3.10:
```bash
python3.10 -m venv venv
Expand Down

0 comments on commit c4e5a83

Please sign in to comment.