forked from trunk-studio/sails-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
39 lines (36 loc) · 1.22 KB
/
app.js
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
(function() {
var e, e0, e1, rc, sails;
sails = void 0;
try {
sails = require('sails');
} catch (_error) {
e = _error;
console.error('To run an app using `node app.js`, you usually need to have a version of `sails` installed in the same directory as your app.');
console.error('To do that, run `npm install sails`');
console.error('Alternatively, if you have sails installed globally (i.e. you did `npm install -g sails`), you can use `sails lift`.');
console.error('When you run `sails lift`, your app will still use a local `./node_modules/sails` dependency if it exists,');
console.error('but if it doesn\'t, the app will run with the global sails instead!');
return;
}
rc = void 0;
try {
rc = require('rc');
} catch (_error) {
e0 = _error;
try {
rc = require('sails/node_modules/rc');
} catch (_error) {
e1 = _error;
console.error('Could not find dependency: `rc`.');
console.error('Your `.sailsrc` file(s) will be ignored.');
console.error('To resolve this, run:');
console.error('npm install rc --save');
rc = function() {
return {};
};
}
}
sails.lift(rc('sails'));
})();
// ---
// generated by coffee-script 1.9.2