Skip to content

Commit bb2e369

Browse files
authored
Handle MB_RUN_MODE and METASTORE_DEV_SERVER_URL env vars (#34)
1 parent 8322072 commit bb2e369

File tree

7 files changed

+480
-140
lines changed

7 files changed

+480
-140
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
**/node_modules
33
**/docker-compose.*
44
.dockerignore
5+
.claude

.env.docker.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ CLIENT_PORT=4400
66
AUTH_PROVIDER_PORT=4500
77

88
WATCH="false"
9+
10+
# for development
11+
# MB_RUN_MODE="dev"
12+
# METASTORE_DEV_SERVER_URL=""

.github/workflows/e2e-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
timeout-minutes: 10
1818
name: e2e-tests
1919
env:
20-
PREMIUM_EMBEDDING_TOKEN: ${{ secrets.MB_PRO_SELF_HOSTED_TOKEN }}
20+
PREMIUM_EMBEDDING_TOKEN: ${{ secrets.STAGING_MB_ALL_FEATURES_TOKEN }}
21+
MB_RUN_MODE: dev
22+
METASTORE_DEV_SERVER_URL: ${{ secrets.METASTORE_DEV_SERVER_URL }}
2123
permissions:
2224
id-token: write
2325
contents: read

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,7 @@ build
3535
# debug
3636
*.log
3737
npm-debug.log*
38+
39+
40+
# agents
41+
.claude

0 commit comments

Comments
 (0)