Files
mi-sitio-personal/prod.sh

11 lines
199 B
Bash

#!/usr/bin/env bash
set -euo pipefail
git pull
rm -rf /root/app/dist/
npm run build
rm -rf /var/www/frontend/*
cp -r /root/app/dist/* /var/www/frontend
chown -R www-data:www-data /var/www/frontend