mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
8 lines
198 B
Bash
Executable file
8 lines
198 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# full script path
|
|
_scriptDir="$(cd "$(dirname "$0")" && pwd -P)"
|
|
|
|
cd $_scriptDir
|
|
cd ../
|
|
node_modules/.bin/nodemon . --ext ".coffee|.js" --watch server --watch server.coffee --unittest
|