Skip to content

Commit

Permalink
Fix helm chart database uri
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Oct 10, 2024
1 parent e19f62e commit 7a8a4b1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions helm-charts/hypha-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ env:
key: JWT_SECRET
- name: PUBLIC_BASE_URL
value: "https://hypha.amun.ai"
- name: DATABASE_FILE_PATH
value: "/data/hypha-app-database.db"

# Define command-line arguments here
startupCommand:
Expand All @@ -113,7 +111,8 @@ startupCommand:
- "--port=9520"
- "--public-base-url=$(PUBLIC_BASE_URL)"
# - "--redis-uri=redis://redis.hypha.svc.cluster.local:6379/0"
- "--database-uri=sqlite+aiosqlite:///${DATABASE_FILE_PATH}"
# In the following line, the database URI is set to use SQLite. Note the 4 slashes.
- "--database-uri=sqlite+aiosqlite:////data/hypha-app-database.db"

# Persistence Configuration
persistence:
Expand Down

0 comments on commit 7a8a4b1

Please sign in to comment.