We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a6e5c commit 09864a4Copy full SHA for 09864a4
README.md
@@ -26,8 +26,14 @@ angularjs-nodejs-users
26
27
> bower install
28
29
+> mongodb
30
+
31
+> node app.js or npm start or node app
32
33
####Needs
34
35
Nodejs and NPM installed
36
-Bower installed
37
+Bower installed
38
39
+MongoDB installed
backend/loaders/database.loader.js
@@ -5,7 +5,7 @@ var db = mongoose.connection;
5
6
db.on('error', console.error);
7
db.once('open', function() {
8
- console.log('Conectado ao MongoDB.');
+ console.log('Connected to MongoDB.');
9
});
10
11
mongoose.connect(database.url);
0 commit comments