mirror of https://github.com/zulip/zulip.git
16 lines
449 B
Bash
Executable File
16 lines
449 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"/../..
|
|
|
|
email=iago@zulip.com
|
|
|
|
mkdir -p var/casper
|
|
|
|
password=$(python manage.py print_initial_password "$email" | fgrep "$email" | awk '{ print $2 }')
|
|
cat > var/casper/test_credentials.js <<EOF
|
|
// Generated by tools/setup/generate-test-credentials
|
|
var test_credentials = {default_user: {username: '$email', password: '$password'}};
|
|
try { exports.test_credentials = test_credentials; } catch (e) {}
|
|
EOF
|