Get started with various databases quickly using Vagrant and a simple provisioning script.
Make sure you've got Vagrant installed. Also install the client library for the database you intend to use.
Fire up an instance of PostgreSQL
cd postgresql
vagrant up
psql --username admin --dbname testdb --host 127.0.0.1 --port 54320
Fire up an instance of MySQL
cd mysql
vagrant up
mysql --user admin --password --host 127.0.0.1 --port 33060
Note that the database is completely insecure. These are intended for testing purposes only.
##License and Copyright
See LICENSE