Skip to content

Commit 859ff7e

Browse files
author
Scott Smereka
committed
Fixed syntax errors
1 parent 0596d31 commit 859ff7e

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

client/bower.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"authors": [
3-
{
4-
"name": "Scott Smereka",
5-
"email": "[email protected]"
3+
{
4+
"name": "Scott Smereka",
5+
"email": "[email protected]"
66
}
77
],
88
"dependencies": {
@@ -32,15 +32,14 @@
3232
"license": {
3333
"url": "https://github.com/smartdevicelink/sdl_server/blob/master/LICENSE"
3434
},
35-
"name": "SDL client",
35+
"name": "sdl-client",
3636
"repository": {
3737
"type": "git",
3838
"url": "https://github.com/smartdevicelink/sdl_server.git"
3939
},
4040
"resolutions": {
4141
"angular": "1.2.16",
42-
"bootstrap": "=3.1.1",
4342
"jquery": "=2.1.1"
4443
},
4544
"version": "0.0.1"
46-
}
45+
}

server/configs/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Config.prototype.default = {
116116
mongodb: {
117117
enabled: true, // Enable or disable the user of a Mongo datastore.
118118

119-
database: 'sdl' // Name of the database in the Mongo datastore.
119+
database: 'sdl', // Name of the database in the Mongo datastore.
120120
host: 'localhost', // IP address of the Mongo datastore.
121121
port: '27017', // Port to connect to the Mongo datastore over.
122122

@@ -277,7 +277,7 @@ Config.prototype.development = {
277277
// Mongo DB can be used as a datastore. All settings
278278
// related to the Mongo database are listed here.
279279
mongodb: {
280-
database: 'sdl_dev' // Name of the database in the Mongo datastore.
280+
database: 'sdl_dev', // Name of the database in the Mongo datastore.
281281
host: 'localhost', // IP address of the Mongo datastore.
282282
port: '27017', // Port to connect to the Mongo datastore over.
283283

@@ -307,7 +307,7 @@ Config.prototype.production = {
307307
// Mongo DB can be used as a datastore. All settings
308308
// related to the Mongo database are listed here.
309309
mongodb: {
310-
database: 'sdl_dev' // Name of the database in the Mongo datastore.
310+
database: 'sdl_dev', // Name of the database in the Mongo datastore.
311311
host: 'localhost', // IP address of the Mongo datastore.
312312
port: '27017', // Port to connect to the Mongo datastore over.
313313

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"email": "[email protected]"
6262
}
6363
],
64-
"name": "SDL Server",
64+
"name": "sdl-server",
6565
"repository": {
6666
"type": "git",
6767
"url": "https://github.com/smartdevicelink/sdl_server.git"

0 commit comments

Comments
 (0)