e0444fa40c
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
341 B
Makefile
17 lines
341 B
Makefile
start:
|
|
docker compose up -d
|
|
|
|
stop:
|
|
docker compose down
|
|
|
|
setup: start install-plugins
|
|
|
|
install-plugins:
|
|
docker exec natascha_grav php /app/www/public/bin/gpm install $(shell cat plugins.txt | tr '\n' ' ') -y
|
|
|
|
deploy:
|
|
git subtree push --prefix=user user-deploy main
|
|
|
|
pull-content:
|
|
git subtree pull --prefix=user user-deploy main --squash
|