chadstart 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +1 -1
- package/TODO.md +739 -0
- package/admin/index.html +27 -1
- package/{chadstart.example.yml → chadstart.example.yaml} +23 -1
- package/chadstart.schema.json +83 -0
- package/cli/cli.js +124 -35
- package/core/auth.js +160 -3
- package/core/backup.js +191 -0
- package/core/config-loader.js +266 -0
- package/core/db.js +4 -0
- package/core/email.js +170 -0
- package/core/entity-engine.js +4 -0
- package/core/logs.js +179 -0
- package/core/migrations.js +23 -18
- package/core/openapi.js +6 -2
- package/core/yaml-loader.js +8 -53
- package/docs/llm-rules.md +1 -1
- package/package.json +3 -1
- package/server/express-server.js +149 -18
- package/test/backup.test.js +146 -0
- package/test/config-loader.test.js +257 -0
- package/test/email.test.js +362 -0
- package/test/logs.test.js +239 -0
- package/test/verification.test.js +439 -0
package/Dockerfile
CHANGED
|
@@ -9,7 +9,7 @@ RUN npm ci --omit=dev
|
|
|
9
9
|
FROM node:lts-alpine AS runner
|
|
10
10
|
WORKDIR /app
|
|
11
11
|
# Runtime dependencies
|
|
12
|
-
RUN apk add --no-cache bash python3 go ruby g++ \
|
|
12
|
+
RUN apk add --no-cache bash python3 go ruby g++ jsonnet \
|
|
13
13
|
&& addgroup -S nodejs && adduser -S nodejs -G nodejs \
|
|
14
14
|
&& mkdir -p /app/{uploads,public,functions} && chown -R nodejs:nodejs /app
|
|
15
15
|
COPY --from=deps --chown=nodejs:nodejs /app/node_modules ./node_modules
|