forked from bpmnServer/bpmn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.js
58 lines (58 loc) · 2.31 KB
/
install.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const _1 = require(".");
const fs = require('fs');
const cwd = process.cwd();
const fse = require('fs-extra');
const srcDir = `./`;
const destDir = `node_modules/bpmn-server/webApp`;
// To copy a folder or file, select overwrite accordingly
try {
fse.copySync(srcDir, destDir, { overwrite: false });
console.log('success!');
}
catch (err) {
console.error(err);
}
let configuration;
const configPath = cwd + '/configuration.js';
if (fs.existsSync(configPath)) {
configuration = require(configPath).configuration;
install();
}
else {
console.log(`**Error** configuration.js file does not exist in this folder '${cwd}'**`);
console.log("please run this script from the folder containing 'configuration.js'");
}
function install() {
return __awaiter(this, void 0, void 0, function* () {
console.log('Installing a new Database');
console.log('current directory is ' + process.cwd());
console.log('Installing a new Database based on configuration in current directory');
console.log('current directory is ' + process.cwd());
console.log(configuration);
console.log(configuration.database);
const server = new _1.BPMNServer(configuration, null, { cron: false });
const dataStore = server.dataStore;
const modelsDataStore = server.definitions;
try {
yield dataStore.install();
yield modelsDataStore.install();
}
catch (exc) {
console.log(exc);
}
console.log('---done.');
process.exit();
});
}
//# sourceMappingURL=install.js.map