mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
19 lines
346 B
Bash
19 lines
346 B
Bash
|
#!/bin/bash
|
||
|
# Easy deploy script..
|
||
|
|
||
|
echo 'Fetching latest git commit'
|
||
|
git pull
|
||
|
|
||
|
echo 'Building backend'
|
||
|
go build -o goscrobble cmd/go-scrobble/*.go
|
||
|
|
||
|
cd web
|
||
|
echo 'Installing frontend packages'
|
||
|
npm install --production
|
||
|
|
||
|
echo 'Building frontend'
|
||
|
npm run build --env production
|
||
|
|
||
|
cd ..
|
||
|
echo 'Restarting Go service'
|
||
|
systemctl restart goscrobble.service
|