Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
**/node_modules
**/docker-compose.*
.dockerignore
.claude
4 changes: 4 additions & 0 deletions .env.docker.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ CLIENT_PORT=4400
AUTH_PROVIDER_PORT=4500

WATCH="false"

# for development
# MB_RUN_MODE="dev"
# METASTORE_DEV_SERVER_URL=""
4 changes: 3 additions & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
timeout-minutes: 10
name: e2e-tests
env:
PREMIUM_EMBEDDING_TOKEN: ${{ secrets.MB_PRO_SELF_HOSTED_TOKEN }}
PREMIUM_EMBEDDING_TOKEN: ${{ secrets.STAGING_MB_PRO_SELF_HOSTED_TOKEN }}
MB_RUN_MODE: e2e
METASTORE_DEV_SERVER_URL: ${{ secrets.METASTORE_DEV_SERVER_URL }}
permissions:
id-token: write
contents: read
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ build
# debug
*.log
npm-debug.log*


# agents
.claude
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ services:
MB_JWT_SHARED_SECRET: "${METABASE_JWT_SHARED_SECRET}"
MB_SETUP_TOKEN: "${PREMIUM_EMBEDDING_TOKEN}"
MB_PREMIUM_EMBEDDING_TOKEN: "${PREMIUM_EMBEDDING_TOKEN}"
MB_RUN_MODE: "${MB_RUN_MODE}"
METASTORE_DEV_SERVER_URL: "${METASTORE_DEV_SERVER_URL}"
MB_JWT_IDENTITY_PROVIDER_URI: "http://localhost:${AUTH_PROVIDER_PORT}/sso/metabase"
healthcheck:
test: curl --fail -X GET -I "http://localhost:${MB_PORT}/api/health" || exit 1
Expand Down
Loading