You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**solidpod** is the simplest wrapper to run your own [Solid](https://solidproject.org) pod server.
8
+
**mypod** is the simplest wrapper to run your own [Solid](https://solidproject.org) pod server.
9
9
10
10
## 🚀 Quick Start
11
11
12
12
```bash
13
13
# Run instantly with npx (no installation required!)
14
-
npx solidpod
14
+
npx mypod
15
15
16
16
# That's it! Your Solid pod is running at http://localhost:5444
17
17
```
@@ -30,57 +30,57 @@ npx solidpod
30
30
### No Installation (Recommended)
31
31
32
32
```bash
33
-
npx solidpod
33
+
npx mypod
34
34
```
35
35
36
36
### Global Installation
37
37
38
38
```bash
39
-
npm install -g solidpod
40
-
solidpod
39
+
npm install -g mypod
40
+
mypod
41
41
```
42
42
43
43
## 🎮 Usage
44
44
45
45
```bash
46
46
# Start with defaults
47
-
solidpod
47
+
mypod
48
48
49
49
# Custom port
50
-
solidpod --port 8080
50
+
mypod --port 8080
51
51
52
52
# Custom data directory
53
-
solidpod --root /var/pods
53
+
mypod --root /var/pods
54
54
55
55
# Multi-user mode
56
-
solidpod --multiuser
56
+
mypod --multiuser
57
57
58
58
# Disable authentication
59
-
solidpod --no-auth
59
+
mypod --no-auth
60
60
61
61
# Show help
62
-
solidpod --help
62
+
mypod --help
63
63
```
64
64
65
65
## 📖 How It Works
66
66
67
-
solidpod is a thin wrapper around [jspod](https://github.com/JavaScriptSolidServer/jspod), which itself wraps [JavaScriptSolidServer](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer).
67
+
mypod is a thin wrapper around [jspod](https://github.com/JavaScriptSolidServer/jspod), which itself wraps [JavaScriptSolidServer](https://github.com/JavaScriptSolidServer/JavaScriptSolidServer).
68
68
69
69
**Layers:**
70
70
```
71
-
solidpod → jspod → JavaScriptSolidServer
71
+
mypod → jspod → JavaScriptSolidServer
72
72
```
73
73
74
74
Each layer adds convenience:
75
75
-**JavaScriptSolidServer**: Full-featured Solid server implementation
76
76
-**jspod**: Beautiful CLI with sensible defaults
77
-
-**solidpod**: Most user-friendly name for instant discovery
77
+
-**mypod**: Most user-friendly name for instant discovery
78
78
79
79
## 🌟 First Run
80
80
81
81
**Step 1**: Run the command
82
82
```bash
83
-
npx solidpod
83
+
npx mypod
84
84
```
85
85
86
86
**Step 2**: Open http://localhost:5444 in your browser
0 commit comments