setup.sh 194 B

123456789
  1. #!/bin/bash
  2. fw_depends nvm nodejs
  3. sed -i 's|localhost|'"${DBHOST}"'|g' hello.js
  4. sed -i 's|mongodb://.*/hello_world|mongodb://'"${DBHOST}"'/hello_world|g' hello.js
  5. npm install
  6. node hello.js &