mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-15 02:37:55 +01:00
4 lines
160 B
Bash
4 lines
160 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd `dirname $0`/../../
|
||
|
ruby -r webrick -e "s = WEBrick::HTTPServer.new(:Port => 8000, :DocumentRoot => Dir.pwd); trap('INT') { s.shutdown }; s.start"
|