Skip to content

Commit

Permalink
Merge pull request #225 from potpie-ai/update-readme
Browse files Browse the repository at this point in the history
Update readme
  • Loading branch information
dhirenmathur authored Jan 10, 2025
2 parents 55eb585 + 6caf543 commit 80a5284
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 235 deletions.
19 changes: 8 additions & 11 deletions .env.template
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
ENV= development
isDevelopmentMode=enabled
ENV=development
OPENAI_API_KEY=
OPENAI_MODEL_REASONING=
# POSTGRES_SERVER=postgresql://postgres:mysecretpassword@host.docker.internal:5432/momentum #for use with wsgl
POSTGRES_SERVER=postgresql://postgres:mysecretpassword@localhost:5432/momentum
MONGO_URI= mongodb://127.0.0.1:27017
MONGODB_DB_NAME= momentum
NEO4J_URI= bolt://127.0.0.1:7687
NEO4J_USERNAME= neo4j
NEO4J_PASSWORD= mysecretpassword
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
# following are for production mode
PORTKEY_API_KEY=
GCP_PROJECT=
defaultUsername= defaultuser
FIREBASE_SERVICE_ACCOUNT=
KNOWLEDGE_GRAPH_URL=
GITHUB_APP_ID=
GITHUB_PRIVATE_KEY=
PROJECT_PATH=projects
KNOWLEDGE_GRAPH_PROJECT_ID=
TRANSACTION_EMAILS_ENABLED=
EMAIL_FROM_ADDRESS=
RESEND_API_KEY=
Expand Down
1 change: 0 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ def initialize_database(self):
def check_and_set_env_vars(self):
required_env_vars = [
"OPENAI_API_KEY",
"OPENAI_MODEL_REASONING",
]
for env_var in required_env_vars:
if env_var not in os.environ:
Expand Down
Loading

0 comments on commit 80a5284

Please sign in to comment.