fix: update to match curriculum challenge instructions

This commit is contained in:
Randell Dawson 2019-12-02 14:38:57 -08:00 committed by Kristofer Koishigawa
parent 9c6b944373
commit c7a1f51367

View file

@ -8,9 +8,12 @@
/** 1) Install & Set up mongoose */
// Add `mongodb` and `mongoose` to the project's `package.json`. Then require
// `mongoose`. Store your **mLab** database URI in the private `.env` file
// as `MONGO_URI`. Connect to the database using `mongoose.connect(<Your URI>)`
// Add mongodb and mongoose to the project's package.json. Then require
// mongoose. Store your Mongo Atlas database URI in the private .env file
// as MONGO_URI. Connect to the database using the following syntax:
//
// mongoose.connect(<Your URI>, { useNewUrlParser: true, useUnifiedTopology: true });
/** # SCHEMAS and MODELS #