Sha256: 19b76b3e815186ecda4e9c8712c44e845d5728617d5a61569ee6ad2c007b2500

Contents?: true

Size: 864 Bytes

Versions: 90

Compression:

Stored size: 864 Bytes

Contents

SCHEMA="pact_broker"
set -e
# mysql mysql -h localhost -u root -e "select 'drop table "' || tablename || '" cascade;' from pg_tables;'"
mysql mysql -h localhost -u root -e 'DROP DATABASE pact_broker;'
mysql mysql -h localhost -u root -e 'CREATE DATABASE pact_broker;'
mysql mysql -h localhost -u root -e "GRANT ALL ON pact_broker.* TO 'pact_broker'@'%' identified by 'pact_broker';"

ip=$(ifconfig en0 | sed -n -e '/inet/s/.*inet \([0-9.]*\) netmask .*/\1/p')
echo ""
echo "run the following command to set your environment variables:"
echo "export PACT_BROKER_DATABASE_USERNAME=pact_broker"
echo "export PACT_BROKER_DATABASE_PASSWORD=pact_broker"
echo "export PACT_BROKER_DATABASE_NAME=${SCHEMA}"
echo "export PACT_BROKER_DATABASE_HOST=${ip}"
echo "To test:"
echo "mysql -upact_broker -ppact_broker -hlocalhost"

DATABASE_ADAPTER=mysql bundle exec rake db:migrate

Version data entries

90 entries across 90 versions & 1 rubygems

Version Path
pact_broker-2.89.1 script/recreate-mysql-db.sh
pact_broker-2.89.0 script/recreate-mysql-db.sh
pact_broker-2.88.0 script/recreate-mysql-db.sh
pact_broker-2.87.0 script/recreate-mysql-db.sh
pact_broker-2.86.0 script/recreate-mysql-db.sh
pact_broker-2.85.1 script/recreate-mysql-db.sh
pact_broker-2.85.0 script/recreate-mysql-db.sh
pact_broker-2.84.0 script/recreate-mysql-db.sh
pact_broker-2.83.0 script/recreate-mysql-db.sh
pact_broker-2.82.0 script/recreate-mysql-db.sh
pact_broker-2.81.0 script/recreate-mysql-db.sh
pact_broker-2.80.0 script/recreate-mysql-db.sh
pact_broker-2.79.1 script/recreate-mysql-db.sh
pact_broker-2.79.0 script/recreate-mysql-db.sh
pact_broker-2.78.1 script/recreate-mysql-db.sh
pact_broker-2.78.0 script/recreate-mysql-db.sh
pact_broker-2.77.0 script/recreate-mysql-db.sh
pact_broker-2.76.2 script/recreate-mysql-db.sh
pact_broker-2.76.1 script/recreate-mysql-db.sh
pact_broker-2.76.0 script/recreate-mysql-db.sh