Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ tsconfig.tsbuildinfo
next-env.d.ts

docs/.vitepress/cache/*
docs/public/manual/*
docs/public/manual/*
resources/skills/clickhouse/
resources/skills/vizlayer/
8 changes: 6 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
path = external/cmdk
url = https://github.com/FrankChen021/cmdk.git
branch = fix
[submodule "resources/skills/clickhouse"]
path = resources/skills/clickhouse
[submodule "external/clickhouse"]
path = external/clickhouse
url = https://github.com/FrankChen021/agent-skills.git
[submodule "external/vizlayer"]
path = external/vizlayer
url = https://github.com/FrankChen021/vizlayer.git
branch = main
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
RUN apk add --no-cache git && npm install -g pnpm

COPY package*.json ./
COPY scripts ./scripts
COPY external ./external

RUN if [ "$BUILD_FROM_SOURCE" = "1" ]; then npm install --include=dev --force; fi
RUN if [ "$BUILD_FROM_SOURCE" = "1" ]; then npm install --include=dev; fi

# Stage 2: Builder (source build only)
FROM node:22.21-alpine3.21 AS builder
Expand Down Expand Up @@ -60,7 +61,7 @@

ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
ENV AUTH_TRUST_HOST=true

Check warning on line 64 in docker/Dockerfile

View workflow job for this annotation

GitHub Actions / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "AUTH_TRUST_HOST") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV PORT=3000
ENV HOSTNAME=0.0.0.0

Expand Down
1 change: 1 addition & 0 deletions external/clickhouse
Submodule clickhouse added at f6e181
1 change: 1 addition & 0 deletions external/vizlayer
Submodule vizlayer added at 6eaa2f
Loading
Loading