Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #479 from gigaaks/master
Browse files Browse the repository at this point in the history
Fix mongoDB database name references as dashboard in all modules.
  • Loading branch information
Tapabrata "Topo" Pal committed Apr 7, 2016
2 parents fd4b54f + 8372782 commit d97e694
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ The following components are required to run Hygieia℠:
MongoDB shell version: 3.0.4
connecting to: test

> use dashboardb
switched to db dashboardb
> use dashboard
switched to db dashboard
> db.createUser(
{
user: "db",
Expand All @@ -35,7 +35,7 @@ The following components are required to run Hygieia℠:
]
})
Successfully added user: {
"user" : "db",
"user" : "dbuser",
"roles" : [
{
"role" : "readWrite",
Expand All @@ -47,7 +47,7 @@ The following components are required to run Hygieia℠:


We recommend that you download MongoDB clients(RoboMongo etc) to connect to your local
running Database and make sure that dashboarddb is created and you are successfully able to connect to it.
running Database and make sure that database: dashboard is created and you are successfully able to connect to it.

#### API Layer
Please click on the link below to learn about how to build and run the API layer
Expand Down
2 changes: 1 addition & 1 deletion github-scm-collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for information about sourcing this properties file.
###Sample application.properties file
--------------------------------------
#Database Name
database=dashboarddb
database=dashboard

#Database HostName - default is localhost
dbhost=10.0.1.1
Expand Down
2 changes: 1 addition & 1 deletion jenkins-build-collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for information about sourcing this properties file.
--------------------------------------

#Database Name
dbname=dashboarddb
dbname=dashboard

#Database HostName - default is localhost
dbhost=localhost
Expand Down
2 changes: 1 addition & 1 deletion jira-feature-collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for information about sourcing this properties file.
--------------------------------------

#Database Name - default is test
spring.data.mongodb.database=dashboarddb
spring.data.mongodb.database=dashboard

#Database HostName - default is localhost
spring.data.mongodb.host=10.0.1.1
Expand Down
2 changes: 1 addition & 1 deletion subversion-scm-collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for information about sourcing this properties file.
--------------------------------------

#Database Name
spring.data.mongodb.database=dashboarddb
spring.data.mongodb.database=dashboard

#Database HostName - default is localhost
spring.data.mongodb.host=10.0.1.1
Expand Down
2 changes: 1 addition & 1 deletion udeploy-deployment-collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for information about sourcing this properties file.
--------------------------------------

#Database Name
spring.data.mongodb.database=dashboarddb
spring.data.mongodb.database=dashboard

#Database HostName - default is localhost
spring.data.mongodb.host=10.0.1.1
Expand Down
2 changes: 1 addition & 1 deletion versionone-feature-collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for information about sourcing this properties file.
--------------------------------------

#Database Name
spring.data.mongodb.database=dashboarddb
spring.data.mongodb.database=dashboard

#Database HostName - default is localhost
spring.data.mongodb.host=10.0.1.1
Expand Down

0 comments on commit d97e694

Please sign in to comment.