HyriseSQLParser/hyrise/web-interface/run_server.sh

10 lines
109 B
Bash
Executable File

#!/bin/sh
# Default Port
PORT="10101"
if [ $# -gt 0 ]; then
PORT=$1
fi
python -m SimpleHTTPServer ${PORT}