18F/identity-idp

View on GitHub
deploy/activate

Summary

Maintainability
Test Coverage
#!/bin/bash

# This script is called by identity-devops cookbooks as part of the deployment
# process. It fetches identity-idp-config and large data files like pwned passwords and
# GeoIP from S3.

set -euo pipefail

echo "deploy/activate starting"
echo "HOME: ${HOME-}"
cd "$(dirname "$0")/.."

set -x

id
which bundle

bundle exec rake deploy:activate db:check_for_pending_migrations

set +x

echo "deploy/activate finished"