mirror of
https://git.ethanthesleepy.one/ethanaobrien/ew.git
synced 2025-05-13 11:37:33 -05:00
10 lines
203 B
Bash
10 lines
203 B
Bash
#!/bin/bash
|
|
|
|
port="${PORT:-8080}"
|
|
directory="${DIRECTORY:-/data/}"
|
|
|
|
if [ "$HTTPS" = "true" ]; then
|
|
/root/ew/ew --path $directory --port $port --https
|
|
else
|
|
/root/ew/ew --path $directory --port $port
|
|
fi
|