8 lines
171 B
Bash
8 lines
171 B
Bash
|
#!/bin/bash
|
||
|
export NVM_DIR="/home/shoofle/.nvm"
|
||
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||
|
|
||
|
cd /var/www/theforest.shoofle.net
|
||
|
cd server
|
||
|
npm start
|