12 lines
304 B
Bash
Executable File
12 lines
304 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/
|
|
abra app cp cooperative.computer favicon.ico app:/var/www/http/
|
|
for file in static; do
|
|
abra app cp cooperative.computer "$file" app:/var/www/http/static/
|
|
done
|