Toy db spins up an empty postgres database to play with.
This is mighty useful when you're starting a new project and need to test a simple DB schema.
To launch the database and pg admin:
# run the database
./run.sh upTo connect to pgadmin:
xdg-open http://localhost:19000/Username: admin@admin.com Password: admin
Select DB Group Local, then enter pgpassword when prompted
To connect to the db with a script or other db interface:
User: pguser
Pass: pgpassword
Port: 15432
host: postgres