Initial commit: Astro scaffold, review template, voorstelformulier, screenshot/AI-automatisering

This commit is contained in:
2026-07-24 08:54:47 +02:00
commit 0913c99b9b
23 changed files with 6027 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
.PHONY: review
# Screenshot + AI-conceptreview maken en meteen in vim openen om verder te schrijven.
# Gebruik: make review URL=https://voorbeeld.nl [SLUG=voorbeeld]
review:
@if [ -z "$(URL)" ]; then \
echo "Gebruik: make review URL=https://voorbeeld.nl [SLUG=voorbeeld]"; \
exit 1; \
fi
@FILE=$$(node --env-file-if-exists=.env scripts/new-review.mjs "$(URL)" $(SLUG)) && vim "$$FILE"