mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 16:37:23 +00:00
Most of these problems were found by ShellCheck (http://www.shellcheck.net). Signed-off-by: Anders Kaseorg <andersk@mit.edu>
13 lines
301 B
Bash
Executable File
13 lines
301 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# Change to root directory of the checkout that we're running from
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
python manage.py checkconfig
|
|
|
|
python manage.py migrate --noinput
|
|
python manage.py createcachetable third_party_api_results
|
|
python manage.py initialize_voyager_db
|
|
|
|
supervisorctl restart all
|