-
Notifications
You must be signed in to change notification settings - Fork 123
/
.sailsrc
50 lines (50 loc) · 1.28 KB
/
.sailsrc
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"cms": {
"view": {
"default": "twenty"
},
"user": {
"allowMultipleAdmin": false
},
"node": {
"listSuffix": "-list",
"limit": 10,
"brief": {
"auto": true,
"field": "content",
"toField": "brief",
"limit": 300,
"overflow": 100
}
},
"preload": {
"string": true,
"duoshuo": ""
}
},
"generators": {
"modules": {}
},
"connections ": {
"mysqlServer": {
"adapter": "sails-mysql",
"host": "YOUR_MYSQL_SERVER_HOSTNAME_OR_IP_ADDRESS",
"user": "YOUR_MYSQL_USER",
"password": "YOUR_MYSQL_PASSWORD",
"database": "YOUR_MYSQL_DB"
},
"mongodbServer": {
"adapter": "sails-mongo",
"host": "localhost",
"port": 27017
},
"postgresqlServer": {
"adapter": "sails-postgresql",
"host": "YOUR_POSTGRES_SERVER_HOSTNAME_OR_IP_ADDRESS",
"user": "YOUR_POSTGRES_USER",
"password": "YOUR_POSTGRES_PASSWORD",
"database": "YOUR_POSTGRES_DB"
}
},
"models": {}
}