8 lines
171 B
Bash
Executable File
8 lines
171 B
Bash
Executable File
#!/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
|