mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-10 01:52:19 +00:00
8 lines
164 B
Bash
8 lines
164 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Quick script to run local builds
|
||
|
source .env
|
||
|
hugo --minify --environment local
|
||
|
npx torchlight
|
||
|
python3 -m http.server --directory public 1313
|
||
|
|