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
2 changes: 1 addition & 1 deletion .agents/skills/constructive-monorepo-setup/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pgpm docker start --image docker.io/constructiveio/postgres-plus:18 --recreate
eval "$(pgpm env)"

# 4. Bootstrap admin users for testing
pgpm admin-users bootstrap --yes
pgpm admin-users bootstrap --client --yes
pgpm admin-users add --test --yes

# 5. Build the monorepo
Expand Down
4 changes: 2 additions & 2 deletions .agents/skills/constructive-setup/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pgpm docker start --image docker.io/constructiveio/postgres-plus:18 --recreate
eval "$(pgpm env)"

# 3. Bootstrap database users
pgpm admin-users bootstrap --yes
pgpm admin-users bootstrap --client --yes
pgpm admin-users add --test --yes

# 4. Build the monorepo
Expand Down Expand Up @@ -70,7 +70,7 @@ For environment variable details, see the **pgpm** skill: [references/env.md](..
Create the required PostgreSQL roles for Constructive's security model:

```bash
pgpm admin-users bootstrap --yes
pgpm admin-users bootstrap --client --yes
pgpm admin-users add --test --yes
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Quick-start for running the Constructive GraphQL server locally with Docker Post
```bash
pgpm docker start --image docker.io/constructiveio/postgres-plus:18 --recreate
eval "$(pgpm env)"
pgpm admin-users bootstrap --yes
pgpm admin-users bootstrap --client --yes
pgpm admin-users add --test --yes
```

Expand Down
2 changes: 1 addition & 1 deletion .agents/skills/constructive-setup/references/local-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Sets `PGHOST`, `PGPORT`, `PGUSER`, `PGPASSWORD`, and `PGDATABASE` for the local
### 4. Bootstrap database users

```bash
pgpm admin-users bootstrap --yes
pgpm admin-users bootstrap --client --yes
pgpm admin-users add --test --yes
```

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ jobs:

- name: Seed app_user
run: |
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --client --yes
pnpm --filter pgpm exec node dist/index.js admin-users add --test --yes

- name: Install pgpm fixture modules
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:

- name: Seed app_user
run: |
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --client --yes
pnpm --filter pgpm exec node dist/index.js admin-users add --test --yes

- name: Install pgpm fixture modules
Expand Down Expand Up @@ -510,7 +510,7 @@ jobs:

- name: Seed app_user
run: |
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --client --yes
pnpm --filter pgpm exec node dist/index.js admin-users add --test --yes

- name: Install Ollama
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pnpm build
Seed the `app_user` roles used by tests:

```sh
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --client --yes
pnpm --filter pgpm exec node dist/index.js admin-users add --test --yes
```

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ssh:
docker exec -it postgres /bin/bash

roles:
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --yes
pnpm --filter pgpm exec node dist/index.js admin-users bootstrap --client --yes
pnpm --filter pgpm exec node dist/index.js admin-users add --test --yes

install:
Expand Down
8 changes: 4 additions & 4 deletions pgpm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"testing/*"
],
"dependencies": {
"@constructive-db/apps": "5.1.0",
"@constructive-db/catalog": "5.1.0",
"@constructive-db/routing": "6.1.0",
"@constructive-db/routing-platform": "5.1.0",
"@constructive-db/apps": "7.0.0",
"@constructive-db/catalog": "6.0.0",
"@constructive-db/routing": "8.0.0",
"@constructive-db/routing-platform": "7.0.0",
"@pgpm/database-jobs": "0.41.0",
"@pgpm/function-resolution": "0.41.0",
"@pgpm/jwt-claims": "0.41.0",
Expand Down
Loading