-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconfig.js
88 lines (70 loc) · 2.04 KB
/
config.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const fs = require("fs");
const { argv } = require("yargs");
const { v4: uuid } = require("uuid");
const home = require("os").homedir();
const { deepMerge } = require("./lib/deep");
const defaultConfig = {
path: `${home}/.nuc`,
port: {
terminal: 8448,
cluster: 4000,
openapi: 3000,
},
options: {},
cache: false,
data: {
encryption: true,
},
};
let _config = { ...defaultConfig };
function init(config = {}) {
_config = deepMerge(defaultConfig, config);
if (!fs.existsSync(_config.path)) {
fs.mkdirSync(_config.path, { recursive: true });
}
require("dotenv").config({ path: `${_config.path}/.env` });
if (!fs.existsSync(`${_config.path}/data`)) {
fs.mkdirSync(`${_config.path}/data`, { recursive: true });
}
if (!fs.existsSync(`${_config.path}/openapi`)) {
fs.mkdirSync(`${_config.path}/openapi`, { recursive: true });
}
if (!fs.existsSync(`${_config.path}/native`)) {
fs.mkdirSync(`${_config.path}/native`, { recursive: true });
}
if (!fs.existsSync(`${_config.path}/extensions`)) {
fs.mkdirSync(`${_config.path}/extensions`, { recursive: true });
}
fs.writeFileSync(
`${_config.path}/nucleoid.js`,
"/* eslint-disable */ let _nucleoid; module.exports = (nucleoid) => { if (nucleoid) { _nucleoid = nucleoid; } return _nucleoid; };"
);
if (config.test) {
_config.id = config.id || uuid();
_config.cache = true;
} else {
try {
const json = require(`${_config.path}/config.json`);
_config = { ..._config, ...json };
} catch (err) {} // eslint-disable-line no-empty
}
let id = argv.id || _config.id;
if (!id) {
try {
id = fs.readFileSync(`${_config.path}/default`, "utf8").trim();
} catch (err) {
id = uuid();
fs.writeFileSync(`${_config.path}/default`, id);
}
}
_config.id = id;
if (argv.terminalPort) {
_config.port.terminal = argv.terminalPort;
}
if (argv.clusterPort) {
_config.port.cluster = argv.clusterPort;
}
return _config;
}
module.exports = () => _config;
module.exports.init = init;