-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.js
55 lines (50 loc) · 1.86 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
var fs = require("fs");
var jsonfile = require("jsonfile");
var config = require("./lib/data/config.json");
var dataPath = "../../data/";
if (!fs.existsSync(dataPath)) {
fs.mkdirSync(dataPath);
}
if (!fs.existsSync(dataPath + "config.json")) {
fs.createReadStream("./lib/data/config.json").pipe(fs.createWriteStream(dataPath + "config.json"));
}
else {
var userConfig = require(dataPath + "config.json");
for (var i in config) {
if (!userConfig[i]) {
userConfig[i] = config[i];
}
}
jsonfile.writeFileSync(dataPath + "config.json", userConfig, {spaces: 4});
config = userConfig;
}
var basePath = "../../";
var publicPath = basePath + config["public_directory"];
var routerPath = basePath + config["router_directory"];
var ajaxPath = basePath + config["ajax_directory"];
var schedulePath = basePath + config["schedule_directory"];
var packageJsonPath = basePath + "package.json";
if (!fs.existsSync(publicPath)) fs.mkdirSync(publicPath);
if (!fs.existsSync(routerPath)) fs.mkdirSync(routerPath);
if (!fs.existsSync(ajaxPath)) fs.mkdirSync(ajaxPath);
if (!fs.existsSync(schedulePath)) fs.mkdirSync(schedulePath);
if (fs.existsSync(packageJsonPath)) {
var packageJson = require(packageJsonPath);
var dirty = false;
if (!packageJson.scripts["start"]) {
packageJson.scripts["start"] = "node node_modules/keeling-js/entry.js";
dirty = true;
}
if (!packageJson.scripts["create-entry"]) {
packageJson.scripts["create-entry"] = "cp node_modules/keeling-js/entry.js ./app.js";
dirty = true;
}
if (dirty) {
jsonfile.writeFileSync(packageJsonPath, packageJson, {spaces: 4});
}
}
else {
console.log("package.json not found, installing entry point index.js");
var entryJson = basePath + "index.js";
fs.createReadStream("./entry.js").pipe(fs.createWriteStream(entryJson));
}