diff options
Diffstat (limited to 'start')
| -rwxr-xr-x | start | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#!/bin/sh +npm run dev & +npm_pid="$(echo $!)" +php -S 0.0.0.0:8000 & +php_pid="$(echo $!)" + +echo "Click anything to stop" +read t +kill $php_pid $npm_pid |
