erik
76f5b87ec9
Add website-build-deployment and cron skeleton. Add shadow-cljs.edn - needs config for cljs.
15 lines
207 B
Bash
Executable file
15 lines
207 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source /usr/local/bin/functions.sh
|
|
|
|
function main() {
|
|
get-and-unzip-website-data
|
|
build-and-extract-website
|
|
move-website-files-to-target
|
|
}
|
|
|
|
main
|
|
|
|
while true; do
|
|
sleep 1m
|
|
done
|