mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
8 lines
231 B
Bash
Executable File
8 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
LISTEN_ADDRESS=127.0.0.1:8088
|
|
|
|
script_dir=$(realpath $(dirname $0))
|
|
output_dir="$script_dir/../../docs"
|
|
echo "Preview the documentation at http://$LISTEN_ADDRESS"
|
|
httpd -fv -p "$LISTEN_ADDRESS" -h "$output_dir" |