-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.js
More file actions
37 lines (37 loc) · 716 Bytes
/
config.js
File metadata and controls
37 lines (37 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = {
admin: {
host: 'localhost',
port: 5003,
database: 'geophoto-content',
user: 'admin',
password: 'admin'
},
nobody: {
host: 'localhost',
port: 5003,
database: 'geophoto-content',
user: 'hon-nobody',
password: 'nobodyPass'
},
reader: {
host: 'localhost',
port: 5003,
database: 'geophoto-content',
user: 'hon-reader',
password: 'readerPass'
},
writer: {
host: 'localhost',
port: 5003,
database: 'geophoto-content',
user: 'hon-writer',
password: 'writerPass'
},
restAdmin: {
host: 'localhost',
port: 5003,
database: 'geophoto-content',
user: 'hon-admin',
password: 'adminPass'
}
};