Set up the project structure per the new-project guide, adapted from the Python skeleton to the Node/TS stack fixed in SPEC.md (reuses docmost-mcp). Scaffold only — the sync engine is not implemented yet. - src/settings.ts: single config layer on zod, schema keyed by real ENV names; credentials and own-service address have no default (fail fast). - src/config-errors.ts: loadSettingsOrExit — clear startup message naming the missing/invalid env var instead of a raw stack trace; exit(1). - src/index.ts: thin entry point that validates config and logs (stub). - test/: vitest unit tests for settings parsing and config errors (10 tests). - Makefile (install/env/build/test/run/dev/clean), strict tsconfig, vitest. - Dockerfile (single-stage, no EXPOSE, prunes dev deps), docker-compose (daemon, volume on /app/data, watchtower), ghcr CI with build needs test. - .env.example, .gitignore/.dockerignore, AGENTS.md, README.md. - Pinned deps (dotenv, zod) + committed package-lock.json.
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
name: Test and publish image
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
cache: "npm"
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Type-check / build
|
|
run: npm run build
|
|
- name: Run tests
|
|
run: npm test
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
needs: test
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile
|
|
--tag ghcr.io/${{ github.repository }}:latest
|
|
--tag ghcr.io/${{ github.repository }}:${{ github.sha }}
|
|
# Publish only from main: on PRs the image is built as a check but never
|
|
# pushed — avoids overwriting :latest with unreviewed code and failing on
|
|
# fork PRs whose GITHUB_TOKEN has no packages:write.
|
|
- name: Log in to GitHub Container Registry
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Push Docker images
|
|
if: github.event_name != 'pull_request'
|
|
run: |
|
|
docker push ghcr.io/${{ github.repository }}:latest
|
|
docker push ghcr.io/${{ github.repository }}:${{ github.sha }}
|