Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 890 Bytes

File metadata and controls

27 lines (18 loc) · 890 Bytes

Database Quickstart

Get started with various databases quickly using Vagrant and a simple provisioning script.

Getting Started

Make sure you've got Vagrant installed. Also install the client library for the database you intend to use.

PostgreSQL

Fire up an instance of PostgreSQL

cd postgresql
vagrant up
psql --username admin --dbname testdb --host 127.0.0.1 --port 54320

MySQL

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