You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://github.com/colindean/hejmo/blob/master/scripts/serve current uses a Python 2.x invocation. It should check for miniserve and use that if it's available (since it's a part of my standard Brewfile.all installation base), falling back to Python 3.x python -m http.server then back to its current implementation. It might be a fun exercise to drop in a few other alternatives, e.g. lighthttpd in a docker container (docker run -d --name lighttpd -p 80:80 gists/lighttpd) or this Ruby one-liner (ruby -run -e httpd . -p 5000).
The text was updated successfully, but these errors were encountered:
https://github.com/colindean/hejmo/blob/master/scripts/serve current uses a Python 2.x invocation. It should check for miniserve and use that if it's available (since it's a part of my standard
Brewfile.all
installation base), falling back to Python 3.xpython -m http.server
then back to its current implementation. It might be a fun exercise to drop in a few other alternatives, e.g. lighthttpd in a docker container (docker run -d --name lighttpd -p 80:80 gists/lighttpd
) or this Ruby one-liner (ruby -run -e httpd . -p 5000
).The text was updated successfully, but these errors were encountered: