mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-23 02:36:33 +08:00
8 lines
175 B
Bash
Executable file
Vendored
8 lines
175 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
# Very simple script to deploy from git
|
|
git pull --rebase
|
|
./manage.py migrate
|
|
./manage.py compilemessages
|
|
./manage.py collectstatic --noinput
|
|
./manage.py setuplang
|
|
|