-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_.env
More file actions
34 lines (34 loc) · 668 Bytes
/
_.env
File metadata and controls
34 lines (34 loc) · 668 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
STATE=dev
DOMAIN=
BRANDING_NAME=MongoGUI
JWT_SECRET=
DATABASES='[
{
"db": "mydb",
"host": "host1:27017,host2:27017",
"username": "user1",
"password": "password1",
"addToConnStr": "?replicaSet=rs0"
}
]'
USERS='[
{
"username": "admin",
"password": "\$2b\$10\$qKVTU98P2ckJEJ.xfxkhFeN9X7rUxjToV9Dpjz0FnJTsPwSSQRyW2",
"actionWebhooks": [{
"discordURL": "https://discord.com/api/webhooks/id/token",
"actions": ["read", "write"],
"databases": ["mydb"]
}],
"databases": [{
"database": "mydb",
"write": true,
"hideCollections": ["collectioname1"],
"showCollections": [],
"limits": {
"read": 50,
"write": 50
}
}]
}
]'