Files
edb-www/bin/deploy
Nikolai R Kristiansen 4e6924d055 Modernize a bit
Drop bootstrap
Remove fabfile in favor of bin/deploy
2022-02-22 00:26:48 +01:00

12 lines
159 B
Bash
Executable File

#!/bin/bash
set -eu
PROJECT_PATH=/var/www/neuf.no/edb
echo "Deploying bbs to ${PROJECT_PATH}"
cd "$PROJECT_PATH" || exit 1
git pull
npm run i
npm run build