mirror of
https://codeberg.org/bunbun/bunbun.dev
synced 2025-01-22 04:34:29 -08:00
38 lines
902 B
Bash
Executable File
38 lines
902 B
Bash
Executable File
#!/bin/bash
|
|
|
|
command="./main.fnl"
|
|
kill_command="pkill -f 'main\.fnl'"
|
|
|
|
log_file="log"
|
|
|
|
usage="Usage: start-server [-h] [--localhost] [-l] [--log-file] [-k]
|
|
|
|
Options:
|
|
-h, --help Show this help message and exit
|
|
--localhost Run the server locally
|
|
-l, --log Log requests in the log file
|
|
--log-file Set the log file
|
|
-k, --kill Kill the server and exit
|
|
|
|
"
|
|
|
|
for (( i=1; i<=$#; i++ )); do
|
|
if [[ "${!i}" == "-h" || "${!i}" == "--help" ]]; then
|
|
printf "$usage"
|
|
exit 0
|
|
elif [[ "${!i}" == "--localhost" ]]; then
|
|
command="${command} --port 8080 --use-http"
|
|
elif [[ "${!i}" == "-l" || "${!i}" == "--log" ]]; then
|
|
command="${command} | tee ${log_file}"
|
|
elif [[ "${!i}" == "--log-file" ]]; then
|
|
((i++))
|
|
log_file="${!i}"
|
|
elif [[ "${!i}" == "-k" || "${!i}" == "--kill" ]]; then
|
|
eval "$kill_command"
|
|
exit 0
|
|
fi
|
|
done
|
|
|
|
$kill_command
|
|
eval "${command} & disown"
|