Merge branch 'main' of ssh://git.commumedia.org:2222/alex/headquarter
CI / Web CI (push) Failing after 9s
CI / API CI (push) Failing after 10s

This commit is contained in:
2026-05-16 12:32:08 +00:00
4 changed files with 2 additions and 51 deletions
-1
View File
@@ -1 +0,0 @@
ignore-build-scripts=false
-29
View File
@@ -1,29 +0,0 @@
.PHONY: install lint test typecheck build dev compose-up compose-down clean
install:
npx pnpm@11.1.1 install
cd apps/api && python3 -m venv .venv && .venv/bin/pip install -e ".[dev]"
lint:
npx pnpm@11.1.1 lint
test:
npx pnpm@11.1.1 test
typecheck:
npx pnpm@11.1.1 typecheck
build:
npx pnpm@11.1.1 build
dev:
npx pnpm@11.1.1 dev
compose-up:
docker compose up --build -d
compose-down:
docker compose down
clean:
rm -rf node_modules apps/web/node_modules apps/api/.venv .pnpm-store/
+2 -17
View File
@@ -1,26 +1,11 @@
{
"name": "headquarter",
"version": "0.0.1",
"private": true,
"description": "Hosted workspace and tool-orchestration platform",
"packageManager": "pnpm@11.1.1",
"scripts": {
"lint": "pnpm --filter @headquarter/web lint && pnpm --filter @headquarter/api lint",
"test": "pnpm --filter @headquarter/web test && pnpm --filter @headquarter/api test",
"typecheck": "pnpm --filter @headquarter/web typecheck && pnpm --filter @headquarter/api typecheck",
"build": "pnpm --filter @headquarter/web build && pnpm --filter @headquarter/api build",
"dev": "pnpm --parallel --filter @headquarter/web --filter @headquarter/api dev",
"compose:up": "docker compose up --build -d",
"compose:down": "docker compose down"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"packageManager": "pnpm@11.1.1",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
"dev": "pnpm --parallel --filter @headquarter/web --filter @headquarter/api dev"
}
}
-4
View File
@@ -1,7 +1,3 @@
packages:
- 'apps/*'
- 'packages/*'
allowBuilds:
esbuild: set this to true or false
onlyBuiltDependencies:
- esbuild