add command to deploy staging site

This commit is contained in:
Christoph Haas 2025-08-18 17:25:29 +02:00
parent 3b0f26211a
commit 62ddc57e4e

View file

@ -6,7 +6,8 @@
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"deploy": "rsync -va --delete dist/ narnia.workaround.org:/srv/www/workaround.org/",
"deploy-prod": "rsync -va --delete dist/ narnia.workaround.org:/srv/www/workaround.org/",
"deploy-stage": "rsync -va --delete dist/ narnia.workaround.org:/srv/www/stage.workaround.org/",
"preview": "astro preview",
"astro": "astro"
},