Files
edb-www/bin/deploy
Nikolai R Kristiansen bbc34ffa9e 💚 npm i
2022-02-27 12:48:32 +01:00

12 lines
169 B
Bash
Executable File

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