Files

10 lines
365 B
Bash
Raw Permalink Normal View History

2025-11-25 16:17:20 -06:00
#!/bin/bash
# Make this be a script that will deploy your site. Assume it'll be run from the
# path of the built site, that the build succeeded, and that anything written to
# stdout will be displayed in a dialog.
# Example:
2025-11-25 21:04:24 -06:00
# rsync -r --delete . root@example.com:/var/www/html 2>&1 && echo "Site deployed!"
2025-11-25 16:17:20 -06:00
echo "Edit _scripts/deploy.sh to set up deploy script"