# Lithium MongoDB Viewer
The Lithium MongoDB Viewer is a simple web-based application that allows you to browse a MongoDB
database through a simple, intuitive interface. Simply copy the application to your web server's
document root, and modify the connection information in `config/connections.php` to match your own
database's settings:
{{{
Connections::add('default', array(
'type' => 'MongoDb',
'host' => 'localhost',
'port' => '27017',
'database' => 'myDb'
));
}}}
Since this application is dependent on the Lithium framework, please make sure to install it
alongside Lithium's `libraries` directory, or modify `LITHIUM_LIBRARY_PATH` in
`config/bootstrap.php`.