9 lines
353 B
Bash
Executable File
9 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
SERVER="jeffrey@webdev2.fiberdirekt.se"
|
|
rsync -avz \
|
|
--exclude 'node_modules' --exclude '.next' --exclude '.env' \
|
|
--exclude '*.db' --exclude '*.sqlite' --exclude 'media' \
|
|
./ $SERVER:/var/www/fiberdirekt/
|
|
|
|
ssh $SERVER "cd /var/www/fiberdirekt && npm run payload migrate && npm run build && pm2 restart fiberdirekt"
|
|
echo "✓ Deployed" |