NodeJS server for CryptoQuip (CQ) using MongoDB and ExpressJS
MongoDB connection settings are now pulled from the server-config.json file. It should look something like this:
{
"environment": "development",
"mongoConfig": {
"host": "localhost",
"port": 27017,
"dbname": "cryptoquip"
}
}