Skip to content

Commit

Permalink
Update QUIVR_API_BASE_URL to use environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
StanGirard committed Apr 22, 2024
1 parent 75a53ab commit fd4a53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
load_dotenv(override=True)

# Quivr API configuration
QUIVR_API_BASE_URL = "https://api.quivr.app"
QUIVR_API_BASE_URL = os.environ.get("QUIVR_API_BASE_URL", "https://api.quivr.app")
QUIVR_API_KEY = os.environ.get("QUIVR_API_KEY")

# Database configuration
Expand Down

0 comments on commit fd4a53b

Please sign in to comment.