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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
ref: ${{ github.head_ref || github.ref_name }}
- name: Regenerate docs
run: |
go install github.com/dargstack/dargstack/v4/cmd/dargstack@v4.0.0-beta.16
go install github.com/dargstack/dargstack/v4/cmd/dargstack@v4.2.0
export PATH="$(go env GOPATH)/bin:$PATH"
dargstack document
- name: Commit and push updated docs
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# <DEPENDENCIES>
FROM ghcr.io/dargstack/dargstack:4.0.0-beta.16
FROM ghcr.io/dargstack/dargstack:4.2.0
# </DEPENDENCIES>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This project uses [dargstack](https://github.com/dargstack/dargstack/), a CLI to
## Quick Start

```sh
dargstack initialize
dargstack clone
```

This clones all sibling repositories and initializes the fullstack development environment.
Expand Down
2 changes: 1 addition & 1 deletion dargstack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ environment:
# tag: latest # optional, defaults to "latest"

metadata:
compatibility: ">=4.0.0-0 <5.0.0"
compatibility: ">=4.2.0 <5.0.0"
name: "vibetype"
source:
name: "maevsi"
Expand Down
3 changes: 2 additions & 1 deletion src/development/postgraphile/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ services:
# You can access the GraphQL API for the PostgreSQL database at [postgraphile.app.localhost](https://postgraphile.app.localhost/).
deploy:
labels:
- [email protected]:maevsi/postgraphile.git
- [email protected]:maevsi/postgraphile.git
- dargstack.development.git.https=https://github.com/maevsi/postgraphile.git
- dargstack.profiles=default
- traefik.enable=true
- traefik.http.middlewares.postgraphile-cors.headers.accessControlAllowCredentials=true
Expand Down
9 changes: 6 additions & 3 deletions src/development/reccoom/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ services:
# You cannot access the recommendation service directly.
deploy:
labels:
- [email protected]:maevsi/reccoom.git
- [email protected]:maevsi/reccoom.git
- dargstack.development.git.https=https://github.com/maevsi/reccoom.git
- dargstack.profiles=recommendation
- traefik.enable=true # dargstack:dev-only
- traefik.http.routers.reccoom.entryPoints=web
Expand Down Expand Up @@ -60,7 +61,8 @@ services:
command: ["uv", "run", "python", "-m", "src.consumer"]
deploy:
labels:
- [email protected]:maevsi/reccoom.git
- [email protected]:maevsi/reccoom.git
- dargstack.development.git.https=https://github.com/maevsi/reccoom.git
- dargstack.profiles=recommendation
environment:
KAFKA_BOOTSTRAP_SERVERS: redpanda:9092
Expand Down Expand Up @@ -93,7 +95,8 @@ services:
command: ["uv", "run", "python", "-m", "src.migration"]
deploy:
labels:
- [email protected]:maevsi/reccoom.git
- [email protected]:maevsi/reccoom.git
- dargstack.development.git.https=https://github.com/maevsi/reccoom.git
- dargstack.profiles=recommendation
restart_policy:
condition: on-failure
Expand Down
3 changes: 2 additions & 1 deletion src/development/sqitch/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ services:
# You cannot access the database migrations directly.
deploy:
labels:
- [email protected]:maevsi/sqitch.git
- [email protected]:maevsi/sqitch.git
- dargstack.development.git.https=https://github.com/maevsi/sqitch.git
- dargstack.profiles=default
restart_policy:
condition: on-failure
Expand Down
3 changes: 2 additions & 1 deletion src/development/vibetype/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ services:
# You can access the main project's frontend at [app.localhost](https://app.localhost/).
deploy:
labels:
- [email protected]:maevsi/vibetype.git
- [email protected]:maevsi/vibetype.git
- dargstack.development.git.https=https://github.com/maevsi/vibetype.git
- dargstack.profiles=default
- traefik.enable=true
- traefik.http.middlewares.vibetype-cors.headers.accessControlAllowHeaders=authorization,content-type,hook-name,x-csrf-token,x-turnstile-key
Expand Down