mirror of
https://github.com/Findus23/acronomy.git
synced 2024-09-19 15:33:45 +02:00
17 lines
256 B
Bash
Executable file
17 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
set -x
|
|
set -e
|
|
|
|
python="/srv/venv/acronomy/bin/python"
|
|
|
|
manage="sudo -u acronomy $python manage.py"
|
|
|
|
git pull
|
|
|
|
$manage scss
|
|
npm run build
|
|
$manage collectstatic --noinput
|
|
$manage migrate
|
|
$manage clearcache
|
|
|
|
sudo systemctl reload acronomy.service
|