mirror of
https://github.com/Luzifer/browserphone.git
synced 2024-11-08 13:50:05 +00:00
10 lines
202 B
Bash
Executable file
10 lines
202 B
Bash
Executable file
#!/usr/local/bin/dumb-init /bin/bash
|
|
set -euxo pipefail
|
|
|
|
if [[ ! -f index.html.dist ]]; then
|
|
mv index.html index.html.dist
|
|
fi
|
|
|
|
korvike -i index.html.dist -o index.html
|
|
|
|
exec python -m http.server 3000
|