1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-16 18:23:16 +00:00

Make Firebase and storage optional

This commit is contained in:
2025-07-03 18:21:21 +02:00
parent a1f81ee732
commit ddddfbba79
6 changed files with 37 additions and 15 deletions
+4 -1
View File
@@ -103,7 +103,7 @@ This starts the backend on port `8000`, the frontend on `3000` and a PostgreSQL
## Helm Chart
A Helm chart is provided under `charts/xslt-playground` to deploy the frontend and backend on Kubernetes. Before installing, create a secret with your Firebase credentials:
A Helm chart is provided under `charts/xslt-playground` to deploy the frontend and backend on Kubernetes. By default it expects Firebase credentials and a PostgreSQL database. Before installing, create a secret with your Firebase credentials:
```bash
kubectl create secret generic firebase-config \
@@ -115,5 +115,8 @@ Install the chart with:
```bash
helm install xslt charts/xslt-playground
# Disable Firebase or database support if desired
# helm install xslt charts/xslt-playground --set firebase.enabled=false
# helm install xslt charts/xslt-playground --set storage.enabled=false
```