24 lines
917 B
Bash
24 lines
917 B
Bash
#!/bin/bash
|
|
# 本地快速启动脚本
|
|
# Quick start in local.
|
|
|
|
next() {
|
|
cat << EOT
|
|
========================================
|
|
███╗ ██╗███████╗██╗ ██╗████████╗
|
|
████╗ ██║██╔════╝╚██╗██╔╝╚══██╔══╝
|
|
██╔██╗ ██║█████╗ ╚███╔╝ ██║
|
|
██║╚██╗██║██╔══╝ ██╔██╗ ██║
|
|
██║ ╚████║███████╗██╔╝ ██╗ ██║
|
|
╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝ ╚═╝
|
|
========================================
|
|
Hugo NexT version $1
|
|
Documentation: https://hugo-next.eu.org
|
|
========================================
|
|
EOT
|
|
}
|
|
|
|
next `cat ../VERSION`
|
|
|
|
hugo server -t ../.. --port 1414 --panicOnWarning --config config.yaml
|