Reed A. Cartwright 843b05a6ec Use exec to switch to node process
At the end of run, `exec` should be used to switch to the node process.  That way node will take over the pid of `sh run.sh`, making it easier to monitor and daemonize the server. 

```
    exec [command [arg ...]]
             Unless command is omitted, the shell process is replaced with the
             specified program (which must be a real program, not a shell
             built-in command or function).  Any redirections on the exec com-
             mand are marked as permanent, so that they are not undone when
             the exec command finishes.
```
2016-01-19 16:17:16 -07:00
..
2013-11-24 13:08:26 +00:00
2014-12-24 02:45:21 +00:00
2014-11-26 19:28:49 +00:00
2013-11-24 13:13:29 +00:00
2015-05-30 15:14:40 +02:00
2012-03-04 21:06:37 +01:00
2013-02-26 16:32:34 -08:00
2014-12-01 22:39:42 +00:00
2013-03-07 14:10:54 +01:00
2015-11-04 21:15:13 +01:00
2016-01-19 16:17:16 -07:00