-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.js
25 lines (19 loc) · 931 Bytes
/
setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require('shelljs/global');
var fs = require('fs');
if (!which('node')) {
echo('Sorry, this script requires node');
exit(1);
}
var pwd = exec('pwd').replace(/\n/g, "");
var laputa_conf_file = fs.readFile('./laputa-gateway.conf', 'utf8',
function(err, data)
{
var result = data.replace(/(export APP_PATH).*(?:\r?\n|\r|$)/,
'export APP_PATH=\"'+pwd+'/app.js\"\n');
fs.writeFile('./laputa-gateway.conf', result, 'utf8',
function (err) {
if (err) return console.log(err);
exec('sudo cp laputa-gateway.conf /etc/init/');
exec('sudo start laputa-gateway');
});
});