diff --git a/config/_default/config.toml b/config/_default/config.toml index b193dfb..2e83094 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -3,7 +3,7 @@ # https://blowfish.page/docs/getting-started/ theme = "blowfish" -baseURL = "https://everun.club/" +baseURL = "https://www.everun.club/" defaultContentLanguage = "ja" hasCJKLanguage = true diff --git a/tasks/production.rake b/tasks/production.rake new file mode 100755 index 0000000..bb0fb82 --- /dev/null +++ b/tasks/production.rake @@ -0,0 +1,18 @@ +#!/usr/bin/env rake + +require 'find' + +desc 'Deploy the hugo contents to the server' +task :prod => [ :prep ] do + sh 'hugo -e production -v --minify' + + sh 'find public -type f -name "*.gz" -delete' + + sh 'find public/ -type f | egrep "\.(css|js|png|jpg|html|JPG|PNG|CSS|JS|HTML)$" | xargs -n 1 -i% -P 0 sh -c "cp % %.bk && gzip % && mv %.bk %"' + + sh 'ssh -p 10022 webadm@10.0.1.166 "rm -rf /var/www/everun/*"' + sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.166:/var/www/everun' + + sh 'ssh -p 10022 webadm@10.0.1.166 "rm -rf /home/webadm/works/everun/*"' + sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.166:/home/webadm/works/everun' +end