cooperative.computer/deploy.sh
2023-04-08 19:02:32 -04:00

11 lines
240 B
Bash
Executable File

#!/bin/bash
set -x
pandoc -s --css=/static/style.css index.md > index.html
abra app cp cooperative.computer index.html app:/var/www/http/
for file in static; do
abra app cp cooperative.computer "$file" app:/var/www/http/static/
done