cooperative.computer/deploy.sh

12 lines
304 B
Bash
Raw Normal View History

2023-03-21 16:17:02 +00:00
#!/bin/bash
2023-04-08 23:02:32 +00:00
set -x
2023-03-21 16:17:02 +00:00
pandoc -s --css=/static/style.css index.md > index.html
2023-03-21 16:19:12 +00:00
2023-03-21 16:17:02 +00:00
abra app cp cooperative.computer index.html app:/var/www/http/
2023-06-05 07:51:21 +00:00
abra app cp cooperative.computer favicon.ico app:/var/www/http/
2023-03-21 16:19:12 +00:00
for file in static; do
abra app cp cooperative.computer "$file" app:/var/www/http/static/
done