mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-25 20:23:37 +08:00
12 lines
273 B
Bash
Executable file
12 lines
273 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Very simple script to deploy from git
|
|
git pull --rebase
|
|
./manage.py migrate
|
|
./manage.py compilemessages
|
|
./manage.py collectstatic --noinput
|
|
./manage.py setuplang
|