2 Commits
Author SHA1 Message Date
hh 279fffb2ce feat: ship renovate.jsonc extending the shared preset 2026-09-10 16:06:02 +00:00
hh 8a18630e11 Deploy hooks 2026-09-09 00:37:04 +02:00
4 changed files with 19 additions and 2 deletions
+7
View File
@@ -11,6 +11,13 @@ A part is a directory with:
Application services carry the `services` profile, databases and other infrastructure carry `external`. Application services carry the `services` profile, databases and other infrastructure carry `external`.
The root also gets a `renovate.jsonc` that is nothing but an `extends` on the
shared preset in `templates/renovate`. It does not subscribe the repo to
anything on its own: the bot walks an explicit list, so a new repo still has to
be added to `repositories` in `projects/personal/renovate/renovate-config.js`
of `infra/komodo`, and needs the `renovate`, `wait-3d` and `deps-code` labels
(`giteaproject <org>/<repo>` creates them).
```sh ```sh
copier copy --trust -d layout=parts -d 'parts=["backend","frontend"]' <this-repo> <dest> copier copy --trust -d layout=parts -d 'parts=["backend","frontend"]' <this-repo> <dest>
copier update -a .copier/infra.yml copier update -a .copier/infra.yml
+4
View File
@@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>templates/renovate"]
}
@@ -1,6 +1,6 @@
PARTS := $(patsubst %/Makefile,%,$(wildcard */Makefile)) PARTS := $(patsubst %/Makefile,%,$(wildcard */Makefile))
.PHONY: env recreate rebuild restart logs down fmt check build .PHONY: env recreate rebuild restart logs down deploy fmt check build pre-deploy post-deploy
env: env:
@test -f .env || awk 'FNR == 1 && NR > 1 { print "" } 1' .env.example $(addsuffix /.env.example,$(PARTS)) > .env @test -f .env || awk 'FNR == 1 && NR > 1 { print "" } 1' .env.example $(addsuffix /.env.example,$(PARTS)) > .env
@@ -21,5 +21,9 @@ logs:
down: down:
docker compose down docker compose down
fmt check build: deploy: pre-deploy
docker compose up -d
$(MAKE) post-deploy
fmt check build pre-deploy post-deploy:
@for part in $(PARTS); do $(MAKE) -C $$part $@ || exit 1; done @for part in $(PARTS); do $(MAKE) -C $$part $@ || exit 1; done
@@ -11,4 +11,6 @@ make recreate
`make env` creates `.env` from the examples of every part and copies each `docker-compose.override.yml.example`. `make recreate` starts the selected profiles, `make rebuild` builds the images first, `make logs`, `make restart` and `make down` do what they say. `make env` creates `.env` from the examples of every part and copies each `docker-compose.override.yml.example`. `make recreate` starts the selected profiles, `make rebuild` builds the images first, `make logs`, `make restart` and `make down` do what they say.
To deploy, `git pull && make deploy`. It runs `make pre-deploy` in every part, which builds images only when their inputs changed and applies migrations, then `docker compose up -d`, then `make post-deploy`, which restarts the services whose mounted code changed. A deploy system with its own `up` step calls the two hooks around it. What was built and started is remembered as `refs/deploy/*` in the clone.
`make fmt`, `make check` and `make build` run in every part. Part-specific targets live in the part's own Makefile: `make -C {{ parts[0] }} ...`. `make fmt`, `make check` and `make build` run in every part. Part-specific targets live in the part's own Makefile: `make -C {{ parts[0] }} ...`.