git-multiverse 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -34,11 +34,10 @@ git-multiverse uninstall
|
|
|
34
34
|
|
|
35
35
|
Setup choices:
|
|
36
36
|
|
|
37
|
-
- runtime: `docker`
|
|
38
|
-
-
|
|
37
|
+
- runtime: `docker` or `native`
|
|
38
|
+
- db-mode: `local` or `remote`
|
|
39
39
|
- Docker mode can use either local Neo4j in Compose or a remote Neo4j database
|
|
40
|
-
- Native + remote-database startup
|
|
41
|
-
binaries are bundled or downloaded automatically
|
|
40
|
+
- Native + remote-database startup runs the pre-built `multiverse-api` binary (pre-bundled for Linux and Windows) and connects directly to a remote Neo4j database without Docker.
|
|
42
41
|
|
|
43
42
|
Security defaults:
|
|
44
43
|
|
package/lib/app.mjs
CHANGED
|
@@ -325,6 +325,7 @@ export function writeStateFiles(config, overrides = {}) {
|
|
|
325
325
|
fsModule.mkdirSync(paths.binDir, { recursive: true, mode: 0o700 });
|
|
326
326
|
fsModule.mkdirSync(paths.runDir, { recursive: true, mode: 0o700 });
|
|
327
327
|
fsModule.mkdirSync(paths.logDir, { recursive: true, mode: 0o700 });
|
|
328
|
+
fsModule.mkdirSync(path.join(paths.stateDir, "docs"), { recursive: true });
|
|
328
329
|
fsModule.chmodSync(paths.stateDir, 0o700);
|
|
329
330
|
fsModule.writeFileSync(paths.envPath, renderEnvFile(config), { mode: 0o600 });
|
|
330
331
|
fsModule.chmodSync(paths.envPath, 0o600);
|
|
Binary file
|
|
Binary file
|