forked from Bitc0indad/gnostr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserve
24 lines (17 loc) · 867 Bytes
/
serve
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
# avoid some errors
touch favicon.ico
touch apple-touch-icon.png
touch apple-touch-icon-precomposed.png
# Start an HTTP server from a directory, optionally specifying the port
# Usage:
# ./serve or ./serve 1234
function serve() {
local port="${1:-8080}";
sleep 1 && open "http://localhost:${port}/" #&
# Set the default Content-Type to `text/plain` instead of `application/octet-stream`
# And serve everything as UTF-8 (although not technically correct, this doesn’t break anything for binary files)
$(python -c $'import SimpleHTTPServer;\nmap = SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_map;\nmap[""] = "text/plain";\nfor key, value in map.items():\n\tmap[key] = value + ";charset=UTF-8";\nSimpleHTTPServer.test();' "$port";)
}
port="${1:-8080}";
npx -y http-server -p $port #-o 2>/tmp/serve.log || echo "install npx"