11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$(dirname -- "${BASH_SOURCE[0]}")"
|
|
cd $DIR
|
|
|
|
# Create Production Files
|
|
hugo --gc --minify
|
|
|
|
# Run Development Environment (includes drafts)
|
|
hugo server -D --noBuildLock --bind=0.0.0.0
|