HyriseSQLParser/hyrise/web-interface/run_server.sh

10 lines
109 B
Bash
Raw Permalink Normal View History

2014-11-17 15:39:27 +01:00
#!/bin/sh
2014-11-17 22:13:29 +01:00
# Default Port
PORT="10101"
if [ $# -gt 0 ]; then
PORT=$1
fi
python -m SimpleHTTPServer ${PORT}