c7e342be4d
* Added a script to sync down the prod database and files to dev
10 lines
315 B
Bash
Executable File
10 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /home/mab/ss
|
|
|
|
echo '::--:: Starting dev server. cd client; npm run serve -> 192.168.1.164:8081'
|
|
screen -dmS "NoteClientScreen" bash -c "cd /home/mab/ss/client; npm run serve"
|
|
|
|
echo '::--:: Starting API server (/api), watching for file changes...'
|
|
cd /home/mab/ss/server
|
|
pm2 start ecosystem.config.js |