7 lines
167 B
Bash
Executable File
7 lines
167 B
Bash
Executable File
#/bin/bash
|
|
|
|
SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
|
OUT_DIR="$(realpath "$SCRIPT_DIR"/../out/)"
|
|
|
|
python3 -m http.server 8000 --bind 0.0.0.0 --directory "$OUT_DIR"
|