sandymount 0.0.9 → 0.0.11
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/bin/sandymount.js +7 -7
- package/package.json +2 -2
package/bin/sandymount.js
CHANGED
|
@@ -21,7 +21,7 @@ const __dirname = dirname(__filename);
|
|
|
21
21
|
const args = process.argv.slice(2);
|
|
22
22
|
const command = args[0];
|
|
23
23
|
|
|
24
|
-
const VERSION = '0.0.
|
|
24
|
+
const VERSION = '0.0.11';
|
|
25
25
|
const DEFAULT_PORT = 5420;
|
|
26
26
|
|
|
27
27
|
function showBanner() {
|
|
@@ -118,12 +118,12 @@ function startServer(startArgs) {
|
|
|
118
118
|
const idpEnabled = startArgs.includes('--idp');
|
|
119
119
|
|
|
120
120
|
// Show SAND stack status
|
|
121
|
-
console.log('
|
|
122
|
-
console.log(' │ S Solid ✓ enabled
|
|
123
|
-
console.log(` │ A ActivityPub ${apEnabled ? '✓ enabled
|
|
124
|
-
console.log(` │ N Nostr ${nostrEnabled ? '✓ enabled
|
|
125
|
-
console.log(` │ D DID ${idpEnabled ? '✓ enabled (IdP)
|
|
126
|
-
console.log('
|
|
121
|
+
console.log(' ┌─────────────────────────────────────┐');
|
|
122
|
+
console.log(' │ S Solid ✓ enabled │');
|
|
123
|
+
console.log(` │ A ActivityPub ${apEnabled ? '✓ enabled │' : '○ --activitypub │'}`);
|
|
124
|
+
console.log(` │ N Nostr ${nostrEnabled ? '✓ enabled │' : '○ disabled │'}`);
|
|
125
|
+
console.log(` │ D DID ${idpEnabled ? '✓ enabled (IdP) │' : '○ --idp │'}`);
|
|
126
|
+
console.log(' └─────────────────────────────────────┘');
|
|
127
127
|
console.log('');
|
|
128
128
|
console.log(` Port: ${port} Data: ${dataDir} Git: ${gitEnabled ? '✓' : '○'}`);
|
|
129
129
|
console.log('');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sandymount",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "SAND Stack: Solid + ActivityPub + Nostr + DID — Personal sovereignty in one command",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://sandy-mount.com",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"javascript-solid-server": "^0.0.
|
|
36
|
+
"javascript-solid-server": "^0.0.70"
|
|
37
37
|
}
|
|
38
38
|
}
|