mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
And use only 1 thread, to work around pylibmc multithreading issues on OSX. (imported from commit bb065b611cb67133f727747cec4a0ff568513788)
11 lines
360 B
Bash
Executable File
11 lines
360 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
echo "DROP SCHEMA humbug CASCADE; CREATE SCHEMA humbug;" | python manage.py dbshell
|
|
|
|
python manage.py syncdb --noinput
|
|
python manage.py migrate
|
|
python manage.py createcachetable third_party_api_results
|
|
python manage.py populate_db -n100 --threads=1
|
|
# Ensure that the local user's API key is synced from ~/.humbugrc
|
|
python manage.py sync_api_key
|