@webresto/graphql 1.3.1 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/eventHelper.js +1 -0
- package/lib/eventHelper.ts +1 -0
- package/package.json +1 -1
- package/src/additionalResolvers.js +33 -5
- package/src/additionalResolvers.ts +38 -5
- package/src/graphql.js +35 -22
- package/src/graphql.ts +38 -25
- package/src/resolvers/cart.d.ts +225 -7
- package/src/resolvers/cart.js +27 -7
- package/src/resolvers/cart.ts +24 -8
- package/src/resolvers/checkout.js +9 -7
- package/src/resolvers/checkout.ts +14 -9
- package/test/{_bootstrap.js → bootstrap.js} +6 -7
- package/test/bootstrap.ts +3 -0
- package/test/fixture/.sailsrc +14 -0
- package/test/fixture/api/controllers/.gitkeep +0 -0
- package/test/fixture/api/models/.gitkeep +0 -0
- package/test/fixture/api/services/.gitkeep +0 -0
- package/test/fixture/app-export.js +73 -73
- package/test/fixture/app.js +56 -56
- package/test/fixture/config/adminpanel.js +25 -3
- package/test/fixture/config/bootstrap.js +161 -0
- package/test/fixture/config/connections.js +9 -9
- package/test/fixture/config/env/development.js +10 -10
- package/test/fixture/config/env/production.js +16 -16
- package/test/fixture/config/globals.js +16 -16
- package/test/fixture/config/hookTimeout.js +8 -8
- package/test/fixture/config/http.js +93 -93
- package/test/fixture/config/i18n.js +57 -57
- package/test/fixture/config/log.js +29 -29
- package/test/fixture/config/models.js +8 -8
- package/test/fixture/config/modulemanager.js +22 -22
- package/test/fixture/config/policies.js +51 -51
- package/test/fixture/config/routes.js +49 -49
- package/test/fixture/config/session.js +100 -100
- package/test/fixture/config/sockets.js +141 -141
- package/test/fixture/config/views.js +94 -94
- package/test/fixture/hacks/waterline.js +39 -0
- package/test/fixture/package.json +33 -30
- package/test/fixture/seeds/dish.json +37042 -0
- package/test/fixture/seeds/group.json +1418 -0
- package/test/fixture/seeds/iikoDiscount.json +365 -0
- package/test/fixture/views/403.ejs +68 -68
- package/test/fixture/views/404.ejs +68 -68
- package/test/fixture/views/500.ejs +73 -73
- package/test/fixture/views/homepage.ejs +74 -74
- package/test/fixture/views/layout.ejs +91 -91
- package/test/integration/graphql.test.js +11 -0
- package/test/integration/graphql.test.ts +15 -0
- package/test/integration/order.test.js +86 -0
- package/test/integration/order.test.ts +108 -0
- package/test/{unit → integration}/sails_not_crash.test.js +0 -0
- package/test/{unit → integration}/sails_not_crash.test.ts +0 -0
- package/test/unit/first.test.js +1 -1
- package/test/unit/first.test.ts +1 -1
- package/test/fixture/.tmp/localDiskDb/archive.db +0 -1
- package/test/fixture/.tmp/localDiskDb/dish.db +0 -1
- package/test/fixture/.tmp/localDiskDb/dish_images__image_dish.db +0 -1
- package/test/fixture/.tmp/localDiskDb/group.db +0 -1
- package/test/fixture/.tmp/localDiskDb/group_images__image_group.db +0 -1
- package/test/fixture/.tmp/localDiskDb/image.db +0 -1
- package/test/fixture/.tmp/localDiskDb/maintenance.db +0 -1
- package/test/fixture/.tmp/localDiskDb/order.db +0 -1
- package/test/fixture/.tmp/localDiskDb/orderdish.db +0 -1
- package/test/fixture/.tmp/localDiskDb/paymentdocument.db +0 -1
- package/test/fixture/.tmp/localDiskDb/paymentmethod.db +0 -2
- package/test/fixture/.tmp/localDiskDb/place.db +0 -1
- package/test/fixture/.tmp/localDiskDb/settings.db +0 -2
- package/test/fixture/.tmp/localDiskDb/street.db +0 -1
- package/test/fixture/package-lock.json +0 -9805
- package/test.zip +0 -0
@@ -0,0 +1,161 @@
|
|
1
|
+
maintenanceSeed = [
|
2
|
+
{
|
3
|
+
id: "maintenance1",
|
4
|
+
title: "Сайт временно не работает",
|
5
|
+
description: "<div>\r\n<p>По техническим причинам доставка сейчас не осуществляется</p>\r\n</div>",
|
6
|
+
enable: false,
|
7
|
+
startDate: "2019-12-31T21:00:00.000Z",
|
8
|
+
stopDate: "2020-12-31T21:00:00.000Z",
|
9
|
+
},
|
10
|
+
];
|
11
|
+
|
12
|
+
const fs = require("fs");
|
13
|
+
const path = require("path");
|
14
|
+
|
15
|
+
module.exports.bootstrap = async function () {
|
16
|
+
sails.config.paths.app = process.cwd();
|
17
|
+
|
18
|
+
/**
|
19
|
+
* # Bootsrap seeds from seeds folder
|
20
|
+
* Magic: filename.json where filename is model name
|
21
|
+
*/
|
22
|
+
|
23
|
+
if (sails.config.models.migrate === "drop" || process.env.FORCE_SEED === "TRUE") {
|
24
|
+
sails.log.info("Seeding 🌱 process start")
|
25
|
+
try {
|
26
|
+
let seedsDir = process.env.SEED_PATH ? process.env.SEED_PATH : __dirname + "/../seeds/";
|
27
|
+
// load JSON data
|
28
|
+
let seeds = fs.readdirSync(seedsDir).filter(function (file) {
|
29
|
+
return path.extname(file).toLowerCase() === ".json";
|
30
|
+
});
|
31
|
+
|
32
|
+
for await (let seed of seeds) {
|
33
|
+
try {
|
34
|
+
let seedFile = seedsDir + seed;
|
35
|
+
let model = seed.split(".")[0].toLowerCase();
|
36
|
+
let json_seed_data = require(seedFile);
|
37
|
+
|
38
|
+
sails.log.info("🌱 Bootstrap > Seed for model: ", model);
|
39
|
+
|
40
|
+
if (sails.models[model]) {
|
41
|
+
await sails.models[model].destroy({}).fetch();
|
42
|
+
if (Array.isArray(json_seed_data)) {
|
43
|
+
for await (seed_item of json_seed_data) {
|
44
|
+
cleanSeedItem(seed_item);
|
45
|
+
await sails.models[model].create(seed_item).fetch();
|
46
|
+
}
|
47
|
+
sails.log.debug(`🌱 Bootstrap seed ${model}: > count: ${json_seed_data.length}`);
|
48
|
+
} else {
|
49
|
+
sails.log.debug(`🌱 Bootstrap seed ${model}: > one item`);
|
50
|
+
cleanSeedItem(seed_item);
|
51
|
+
await sails.models[model].create(json_seed_data).fetch();
|
52
|
+
}
|
53
|
+
sails.log.info(`Bootstrap seed model: > ${model} was seeded, count: ${json_seed_data.length}`);
|
54
|
+
} else {
|
55
|
+
sails.log.warn(`Bootstrap seed model: > ${model} SKIPED (model not present in sails)`);
|
56
|
+
}
|
57
|
+
} catch (error) {
|
58
|
+
sails.log.error(`🌱 Seeding error: ${error}`);
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
// Load JS files
|
63
|
+
seeds = fs.readdirSync(seedsDir).filter(function (file) {
|
64
|
+
return path.extname(file).toLowerCase() === ".js";
|
65
|
+
});
|
66
|
+
|
67
|
+
/**
|
68
|
+
* If file .queue exist then sort seedqueue by this file
|
69
|
+
*/
|
70
|
+
|
71
|
+
if (fs.existsSync(seedsDir + ".queue")) {
|
72
|
+
var queuelist = fs
|
73
|
+
.readFileSync(seedsDir + ".queue")
|
74
|
+
.toString()
|
75
|
+
.split("\n");
|
76
|
+
let _seeds = [...seeds];
|
77
|
+
seeds = [];
|
78
|
+
|
79
|
+
// Build head loadlist of js seeds files
|
80
|
+
queuelist.forEach((qItem) => {
|
81
|
+
_seeds.forEach((sItem) => {
|
82
|
+
if (sItem.includes(qItem) && !isCommented(qItem)) {
|
83
|
+
seeds.push(sItem);
|
84
|
+
}
|
85
|
+
});
|
86
|
+
});
|
87
|
+
|
88
|
+
// Build foot
|
89
|
+
seeds = [...seeds, ..._seeds.filter((n) => !seeds.includes(n))];
|
90
|
+
}
|
91
|
+
|
92
|
+
for await (let seed of seeds) {
|
93
|
+
let seedFile = seedsDir + seed;
|
94
|
+
if (fs.existsSync(seedFile)) {
|
95
|
+
let bootstrap_model_seed = require(seedFile);
|
96
|
+
await bootstrap_model_seed.default(sails);
|
97
|
+
}
|
98
|
+
}
|
99
|
+
} catch (error) {
|
100
|
+
console.error("Bootstrap seeds error: > ", error);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
await Settings.set("enableIikoSimpleDiscounts", true);
|
105
|
+
//////////////////////////////////////////////////////////
|
106
|
+
|
107
|
+
setTimeout(() => {
|
108
|
+
console.log("ADMINPANEL", sails.config.adminpanel.instances.discount)
|
109
|
+
}, 10000)
|
110
|
+
|
111
|
+
if (sails.config.models.migrate === "drop") {
|
112
|
+
// create init params for webresto
|
113
|
+
try {
|
114
|
+
if ((await Maintenance.count()) === 0) {
|
115
|
+
sails.log.verbose("BOOTSTRAP > Start Import Maintenance SEED");
|
116
|
+
await Maintenance.createEach(maintenanceSeed).fetch();
|
117
|
+
}
|
118
|
+
|
119
|
+
process.env.TZ = (await Settings.use("timezone")) ? await Settings.use("timezone") : process.env.TZ;
|
120
|
+
|
121
|
+
return
|
122
|
+
} catch (error) {
|
123
|
+
console.log(error);
|
124
|
+
}
|
125
|
+
} else {
|
126
|
+
process.env.TZ = (await Settings.use("timezone")) ? await Settings.use("timezone") : process.env.TZ;
|
127
|
+
return
|
128
|
+
}
|
129
|
+
return
|
130
|
+
};
|
131
|
+
|
132
|
+
function isCommented(str) {
|
133
|
+
return (Boolean(str) && (
|
134
|
+
str
|
135
|
+
.split(" ")
|
136
|
+
.filter((a) => {
|
137
|
+
return Boolean(a);
|
138
|
+
})[0]
|
139
|
+
.charAt(0) === "#"
|
140
|
+
));
|
141
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
function cleanSeedItem(item) {
|
145
|
+
|
146
|
+
if(item.createdAt) delete(item.createdAt)
|
147
|
+
if(item.updatedAt) delete(item.updatedAt)
|
148
|
+
if(typeof item.id === "number") delete(item.id)
|
149
|
+
|
150
|
+
for (const [key, value] of Object.entries(item)) {
|
151
|
+
if (value === null || value === undefined) {
|
152
|
+
delete(item[key])
|
153
|
+
} else {
|
154
|
+
try {
|
155
|
+
let json_value = JSON.parse(value);
|
156
|
+
item[key] = json_value
|
157
|
+
} catch (e) {
|
158
|
+
}
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|
@@ -1,9 +1,9 @@
|
|
1
|
-
module.exports.connections = {
|
2
|
-
// postgres: {
|
3
|
-
// adapter: 'sails-postgresql',
|
4
|
-
// host: process.env.PG_HOST === undefined ? '127.0.0.1' : process.env.PG_HOST,
|
5
|
-
// user: process.env.PG_USER === undefined ? 'postgres' : process.env.PG_USER,
|
6
|
-
// password: process.env.PG_PASSWORD === undefined ? 'postgres' : process.env.PG_PASSWORD,
|
7
|
-
// database: process.env.PG_DATABASE === undefined ? 'testdb' : process.env.PG_DATABASE
|
8
|
-
// }
|
9
|
-
};
|
1
|
+
module.exports.connections = {
|
2
|
+
// postgres: {
|
3
|
+
// adapter: 'sails-postgresql',
|
4
|
+
// host: process.env.PG_HOST === undefined ? '127.0.0.1' : process.env.PG_HOST,
|
5
|
+
// user: process.env.PG_USER === undefined ? 'postgres' : process.env.PG_USER,
|
6
|
+
// password: process.env.PG_PASSWORD === undefined ? 'postgres' : process.env.PG_PASSWORD,
|
7
|
+
// database: process.env.PG_DATABASE === undefined ? 'testdb' : process.env.PG_DATABASE
|
8
|
+
// }
|
9
|
+
};
|
@@ -1,10 +1,10 @@
|
|
1
|
-
module.exports = {
|
2
|
-
// models: {
|
3
|
-
// connection: 'postgres'
|
4
|
-
|
5
|
-
// },
|
6
|
-
port: process.env.PORT === undefined ? 42772 : process.env.PORT,
|
7
|
-
log: {
|
8
|
-
level: process.env.LOG_LEVEL === undefined ? 'verbose' : process.env.PORT
|
9
|
-
}
|
10
|
-
};
|
1
|
+
module.exports = {
|
2
|
+
// models: {
|
3
|
+
// connection: 'postgres'
|
4
|
+
|
5
|
+
// },
|
6
|
+
port: process.env.PORT === undefined ? 42772 : process.env.PORT,
|
7
|
+
log: {
|
8
|
+
level: process.env.LOG_LEVEL === undefined ? 'verbose' : process.env.PORT
|
9
|
+
}
|
10
|
+
};
|
@@ -1,16 +1,16 @@
|
|
1
|
-
module.exports = {
|
2
|
-
// models: {
|
3
|
-
// connection: 'postgres',
|
4
|
-
// migrate: 'safe'
|
5
|
-
// },
|
6
|
-
adminpanel:{
|
7
|
-
auth: true
|
8
|
-
},
|
9
|
-
log: {
|
10
|
-
level: 'info'
|
11
|
-
},
|
12
|
-
port: process.env.PORT === undefined ? 42772 : process.env.PORT,
|
13
|
-
log: {
|
14
|
-
level: "verbose"
|
15
|
-
}
|
16
|
-
};
|
1
|
+
module.exports = {
|
2
|
+
// models: {
|
3
|
+
// connection: 'postgres',
|
4
|
+
// migrate: 'safe'
|
5
|
+
// },
|
6
|
+
adminpanel:{
|
7
|
+
auth: true
|
8
|
+
},
|
9
|
+
log: {
|
10
|
+
level: 'info'
|
11
|
+
},
|
12
|
+
port: process.env.PORT === undefined ? 42772 : process.env.PORT,
|
13
|
+
log: {
|
14
|
+
level: "verbose"
|
15
|
+
}
|
16
|
+
};
|
@@ -1,16 +1,16 @@
|
|
1
|
-
/**
|
2
|
-
* THIS FILE WAS ADDED AUTOMATICALLY by the Sails 1.0 app migration tool.
|
3
|
-
* The original file was backed up as `config/globals-old.js.txt`
|
4
|
-
*/
|
5
|
-
|
6
|
-
module.exports.globals = {
|
7
|
-
|
8
|
-
_: require('lodash'),
|
9
|
-
|
10
|
-
async: require('async'),
|
11
|
-
|
12
|
-
models: true,
|
13
|
-
|
14
|
-
sails: true
|
15
|
-
|
16
|
-
};
|
1
|
+
/**
|
2
|
+
* THIS FILE WAS ADDED AUTOMATICALLY by the Sails 1.0 app migration tool.
|
3
|
+
* The original file was backed up as `config/globals-old.js.txt`
|
4
|
+
*/
|
5
|
+
|
6
|
+
module.exports.globals = {
|
7
|
+
|
8
|
+
_: require('lodash'),
|
9
|
+
|
10
|
+
async: require('async'),
|
11
|
+
|
12
|
+
models: true,
|
13
|
+
|
14
|
+
sails: true
|
15
|
+
|
16
|
+
};
|
@@ -1,8 +1,8 @@
|
|
1
|
-
module.exports.orm = {
|
2
|
-
_hookTimeout: 100000000
|
3
|
-
};
|
4
|
-
|
5
|
-
module.exports.pubsub = {
|
6
|
-
_hookTimeout: 100000000
|
7
|
-
};
|
8
|
-
|
1
|
+
module.exports.orm = {
|
2
|
+
_hookTimeout: 100000000
|
3
|
+
};
|
4
|
+
|
5
|
+
module.exports.pubsub = {
|
6
|
+
_hookTimeout: 100000000
|
7
|
+
};
|
8
|
+
|
@@ -1,93 +1,93 @@
|
|
1
|
-
/**
|
2
|
-
* HTTP Server Settings
|
3
|
-
* (sails.config.http)
|
4
|
-
*
|
5
|
-
* Configuration for the underlying HTTP server in Sails.
|
6
|
-
* Only applies to HTTP requests (not WebSockets)
|
7
|
-
*
|
8
|
-
* For more information on configuration, check out:
|
9
|
-
* http://sailsjs.org/#!/documentation/reference/sails.config/sails.config.http.html
|
10
|
-
*/
|
11
|
-
|
12
|
-
module.exports.http = {
|
13
|
-
|
14
|
-
/****************************************************************************
|
15
|
-
* *
|
16
|
-
* Express middleware to use for every Sails request. To add custom *
|
17
|
-
* middleware to the mix, add a function to the middleware config object and *
|
18
|
-
* add its key to the "order" array. The $custom key is reserved for *
|
19
|
-
* backwards-compatibility with Sails v0.9.x apps that use the *
|
20
|
-
* `customMiddleware` config option. *
|
21
|
-
* *
|
22
|
-
****************************************************************************/
|
23
|
-
|
24
|
-
middleware: {
|
25
|
-
|
26
|
-
/***************************************************************************
|
27
|
-
* *
|
28
|
-
* The order in which middleware should be run for HTTP request. (the Sails *
|
29
|
-
* router is invoked by the "router" middleware below.) *
|
30
|
-
* *
|
31
|
-
***************************************************************************/
|
32
|
-
|
33
|
-
// order: [
|
34
|
-
// 'startRequestTimer',
|
35
|
-
// 'cookieParser',
|
36
|
-
// 'session',
|
37
|
-
// 'myRequestLogger',
|
38
|
-
// 'bodyParser',
|
39
|
-
// 'handleBodyParserError',
|
40
|
-
// 'compress',
|
41
|
-
// 'methodOverride',
|
42
|
-
// 'poweredBy',
|
43
|
-
// '$custom',
|
44
|
-
// 'router',
|
45
|
-
// 'www',
|
46
|
-
// 'favicon',
|
47
|
-
// '404',
|
48
|
-
// '500'
|
49
|
-
// ],
|
50
|
-
|
51
|
-
/****************************************************************************
|
52
|
-
* *
|
53
|
-
* Example custom middleware; logs each request to the console. *
|
54
|
-
* *
|
55
|
-
****************************************************************************/
|
56
|
-
|
57
|
-
// myRequestLogger: function (req, res, next) {
|
58
|
-
// console.log("Requested :: ", req.method, req.url);
|
59
|
-
// return next();
|
60
|
-
// }
|
61
|
-
|
62
|
-
|
63
|
-
/***************************************************************************
|
64
|
-
* *
|
65
|
-
* The body parser that will handle incoming multipart HTTP requests. By *
|
66
|
-
* default as of v0.10, Sails uses *
|
67
|
-
* [skipper](http://github.com/balderdashy/skipper). See *
|
68
|
-
* http://www.senchalabs.org/connect/multipart.html for other options. *
|
69
|
-
* *
|
70
|
-
* Note that Sails uses an internal instance of Skipper by default; to *
|
71
|
-
* override it and specify more options, make sure to "npm install skipper" *
|
72
|
-
* in your project first. You can also specify a different body parser or *
|
73
|
-
* a custom function with req, res and next parameters (just like any other *
|
74
|
-
* middleware function). *
|
75
|
-
* *
|
76
|
-
***************************************************************************/
|
77
|
-
|
78
|
-
// bodyParser: require('skipper')({strict: true})
|
79
|
-
|
80
|
-
},
|
81
|
-
|
82
|
-
/***************************************************************************
|
83
|
-
* *
|
84
|
-
* The number of seconds to cache flat files on disk being served by *
|
85
|
-
* Express static middleware (by default, these files are in `.tmp/public`) *
|
86
|
-
* *
|
87
|
-
* The HTTP static cache is only active in a 'production' environment, *
|
88
|
-
* since that's the only time Express will cache flat-files. *
|
89
|
-
* *
|
90
|
-
***************************************************************************/
|
91
|
-
|
92
|
-
// cache: 31557600000
|
93
|
-
};
|
1
|
+
/**
|
2
|
+
* HTTP Server Settings
|
3
|
+
* (sails.config.http)
|
4
|
+
*
|
5
|
+
* Configuration for the underlying HTTP server in Sails.
|
6
|
+
* Only applies to HTTP requests (not WebSockets)
|
7
|
+
*
|
8
|
+
* For more information on configuration, check out:
|
9
|
+
* http://sailsjs.org/#!/documentation/reference/sails.config/sails.config.http.html
|
10
|
+
*/
|
11
|
+
|
12
|
+
module.exports.http = {
|
13
|
+
|
14
|
+
/****************************************************************************
|
15
|
+
* *
|
16
|
+
* Express middleware to use for every Sails request. To add custom *
|
17
|
+
* middleware to the mix, add a function to the middleware config object and *
|
18
|
+
* add its key to the "order" array. The $custom key is reserved for *
|
19
|
+
* backwards-compatibility with Sails v0.9.x apps that use the *
|
20
|
+
* `customMiddleware` config option. *
|
21
|
+
* *
|
22
|
+
****************************************************************************/
|
23
|
+
|
24
|
+
middleware: {
|
25
|
+
|
26
|
+
/***************************************************************************
|
27
|
+
* *
|
28
|
+
* The order in which middleware should be run for HTTP request. (the Sails *
|
29
|
+
* router is invoked by the "router" middleware below.) *
|
30
|
+
* *
|
31
|
+
***************************************************************************/
|
32
|
+
|
33
|
+
// order: [
|
34
|
+
// 'startRequestTimer',
|
35
|
+
// 'cookieParser',
|
36
|
+
// 'session',
|
37
|
+
// 'myRequestLogger',
|
38
|
+
// 'bodyParser',
|
39
|
+
// 'handleBodyParserError',
|
40
|
+
// 'compress',
|
41
|
+
// 'methodOverride',
|
42
|
+
// 'poweredBy',
|
43
|
+
// '$custom',
|
44
|
+
// 'router',
|
45
|
+
// 'www',
|
46
|
+
// 'favicon',
|
47
|
+
// '404',
|
48
|
+
// '500'
|
49
|
+
// ],
|
50
|
+
|
51
|
+
/****************************************************************************
|
52
|
+
* *
|
53
|
+
* Example custom middleware; logs each request to the console. *
|
54
|
+
* *
|
55
|
+
****************************************************************************/
|
56
|
+
|
57
|
+
// myRequestLogger: function (req, res, next) {
|
58
|
+
// console.log("Requested :: ", req.method, req.url);
|
59
|
+
// return next();
|
60
|
+
// }
|
61
|
+
|
62
|
+
|
63
|
+
/***************************************************************************
|
64
|
+
* *
|
65
|
+
* The body parser that will handle incoming multipart HTTP requests. By *
|
66
|
+
* default as of v0.10, Sails uses *
|
67
|
+
* [skipper](http://github.com/balderdashy/skipper). See *
|
68
|
+
* http://www.senchalabs.org/connect/multipart.html for other options. *
|
69
|
+
* *
|
70
|
+
* Note that Sails uses an internal instance of Skipper by default; to *
|
71
|
+
* override it and specify more options, make sure to "npm install skipper" *
|
72
|
+
* in your project first. You can also specify a different body parser or *
|
73
|
+
* a custom function with req, res and next parameters (just like any other *
|
74
|
+
* middleware function). *
|
75
|
+
* *
|
76
|
+
***************************************************************************/
|
77
|
+
|
78
|
+
// bodyParser: require('skipper')({strict: true})
|
79
|
+
|
80
|
+
},
|
81
|
+
|
82
|
+
/***************************************************************************
|
83
|
+
* *
|
84
|
+
* The number of seconds to cache flat files on disk being served by *
|
85
|
+
* Express static middleware (by default, these files are in `.tmp/public`) *
|
86
|
+
* *
|
87
|
+
* The HTTP static cache is only active in a 'production' environment, *
|
88
|
+
* since that's the only time Express will cache flat-files. *
|
89
|
+
* *
|
90
|
+
***************************************************************************/
|
91
|
+
|
92
|
+
// cache: 31557600000
|
93
|
+
};
|
@@ -1,57 +1,57 @@
|
|
1
|
-
/**
|
2
|
-
* Internationalization / Localization Settings
|
3
|
-
* (sails.config.i18n)
|
4
|
-
*
|
5
|
-
* If your app will touch people from all over the world, i18n (or internationalization)
|
6
|
-
* may be an important part of your international strategy.
|
7
|
-
*
|
8
|
-
*
|
9
|
-
* For more informationom i18n in Sails, check out:
|
10
|
-
* http://sailsjs.org/#!/documentation/concepts/Internationalization
|
11
|
-
*
|
12
|
-
* For a complete list of i18n options, see:
|
13
|
-
* https://github.com/mashpie/i18n-node#list-of-configuration-options
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*/
|
17
|
-
|
18
|
-
module.exports.i18n = {
|
19
|
-
|
20
|
-
/***************************************************************************
|
21
|
-
* *
|
22
|
-
* Which locales are supported? *
|
23
|
-
* *
|
24
|
-
***************************************************************************/
|
25
|
-
|
26
|
-
// locales: ['en', 'es', 'fr', 'de'],
|
27
|
-
|
28
|
-
/****************************************************************************
|
29
|
-
* *
|
30
|
-
* What is the default locale for the site? Note that this setting will be *
|
31
|
-
* overridden for any request that sends an "Accept-Language" header (i.e. *
|
32
|
-
* most browsers), but it's still useful if you need to localize the *
|
33
|
-
* response for requests made by non-browser clients (e.g. cURL). *
|
34
|
-
* *
|
35
|
-
****************************************************************************/
|
36
|
-
|
37
|
-
// defaultLocale: 'en',
|
38
|
-
|
39
|
-
/****************************************************************************
|
40
|
-
* *
|
41
|
-
* Automatically add new keys to locale (translation) files when they are *
|
42
|
-
* encountered during a request? *
|
43
|
-
* *
|
44
|
-
****************************************************************************/
|
45
|
-
|
46
|
-
// updateFiles: false,
|
47
|
-
|
48
|
-
/****************************************************************************
|
49
|
-
* *
|
50
|
-
* Path (relative to app root) of directory to store locale (translation) *
|
51
|
-
* files in. *
|
52
|
-
* *
|
53
|
-
****************************************************************************/
|
54
|
-
|
55
|
-
// localesDirectory: '/config/locales'
|
56
|
-
|
57
|
-
};
|
1
|
+
/**
|
2
|
+
* Internationalization / Localization Settings
|
3
|
+
* (sails.config.i18n)
|
4
|
+
*
|
5
|
+
* If your app will touch people from all over the world, i18n (or internationalization)
|
6
|
+
* may be an important part of your international strategy.
|
7
|
+
*
|
8
|
+
*
|
9
|
+
* For more informationom i18n in Sails, check out:
|
10
|
+
* http://sailsjs.org/#!/documentation/concepts/Internationalization
|
11
|
+
*
|
12
|
+
* For a complete list of i18n options, see:
|
13
|
+
* https://github.com/mashpie/i18n-node#list-of-configuration-options
|
14
|
+
*
|
15
|
+
*
|
16
|
+
*/
|
17
|
+
|
18
|
+
module.exports.i18n = {
|
19
|
+
|
20
|
+
/***************************************************************************
|
21
|
+
* *
|
22
|
+
* Which locales are supported? *
|
23
|
+
* *
|
24
|
+
***************************************************************************/
|
25
|
+
|
26
|
+
// locales: ['en', 'es', 'fr', 'de'],
|
27
|
+
|
28
|
+
/****************************************************************************
|
29
|
+
* *
|
30
|
+
* What is the default locale for the site? Note that this setting will be *
|
31
|
+
* overridden for any request that sends an "Accept-Language" header (i.e. *
|
32
|
+
* most browsers), but it's still useful if you need to localize the *
|
33
|
+
* response for requests made by non-browser clients (e.g. cURL). *
|
34
|
+
* *
|
35
|
+
****************************************************************************/
|
36
|
+
|
37
|
+
// defaultLocale: 'en',
|
38
|
+
|
39
|
+
/****************************************************************************
|
40
|
+
* *
|
41
|
+
* Automatically add new keys to locale (translation) files when they are *
|
42
|
+
* encountered during a request? *
|
43
|
+
* *
|
44
|
+
****************************************************************************/
|
45
|
+
|
46
|
+
// updateFiles: false,
|
47
|
+
|
48
|
+
/****************************************************************************
|
49
|
+
* *
|
50
|
+
* Path (relative to app root) of directory to store locale (translation) *
|
51
|
+
* files in. *
|
52
|
+
* *
|
53
|
+
****************************************************************************/
|
54
|
+
|
55
|
+
// localesDirectory: '/config/locales'
|
56
|
+
|
57
|
+
};
|
@@ -1,29 +1,29 @@
|
|
1
|
-
/**
|
2
|
-
* Built-in Log Configuration
|
3
|
-
* (sails.config.log)
|
4
|
-
*
|
5
|
-
* Configure the log level for your app, as well as the transport
|
6
|
-
* (Underneath the covers, Sails uses Winston for logging, which
|
7
|
-
* allows for some pretty neat custom transports/adapters for log messages)
|
8
|
-
*
|
9
|
-
* For more information on the Sails logger, check out:
|
10
|
-
* http://sailsjs.org/#!/documentation/concepts/Logging
|
11
|
-
*/
|
12
|
-
|
13
|
-
module.exports.log = {
|
14
|
-
|
15
|
-
/***************************************************************************
|
16
|
-
* *
|
17
|
-
* Valid `level` configs: i.e. the minimum log level to capture with *
|
18
|
-
* sails.log.*() *
|
19
|
-
* *
|
20
|
-
* The order of precedence for log levels from lowest to highest is: *
|
21
|
-
* silly, verbose, info, debug, warn, error *
|
22
|
-
* *
|
23
|
-
* You may also set the level to "silent" to suppress all logs. *
|
24
|
-
* *
|
25
|
-
***************************************************************************/
|
26
|
-
|
27
|
-
level: '
|
28
|
-
|
29
|
-
};
|
1
|
+
/**
|
2
|
+
* Built-in Log Configuration
|
3
|
+
* (sails.config.log)
|
4
|
+
*
|
5
|
+
* Configure the log level for your app, as well as the transport
|
6
|
+
* (Underneath the covers, Sails uses Winston for logging, which
|
7
|
+
* allows for some pretty neat custom transports/adapters for log messages)
|
8
|
+
*
|
9
|
+
* For more information on the Sails logger, check out:
|
10
|
+
* http://sailsjs.org/#!/documentation/concepts/Logging
|
11
|
+
*/
|
12
|
+
|
13
|
+
module.exports.log = {
|
14
|
+
|
15
|
+
/***************************************************************************
|
16
|
+
* *
|
17
|
+
* Valid `level` configs: i.e. the minimum log level to capture with *
|
18
|
+
* sails.log.*() *
|
19
|
+
* *
|
20
|
+
* The order of precedence for log levels from lowest to highest is: *
|
21
|
+
* silly, verbose, info, debug, warn, error *
|
22
|
+
* *
|
23
|
+
* You may also set the level to "silent" to suppress all logs. *
|
24
|
+
* *
|
25
|
+
***************************************************************************/
|
26
|
+
|
27
|
+
level: 'debug'
|
28
|
+
|
29
|
+
};
|