solid-server 5.6.17 → 5.6.21
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/Dockerfile +1 -0
- package/README.md +9 -3
- package/docker-compose.yml +10 -0
- package/package.json +5 -5
package/Dockerfile
CHANGED
package/README.md
CHANGED
|
@@ -237,19 +237,25 @@ We have automatic builds set up, so commits to master will trigger a build of ht
|
|
|
237
237
|
|
|
238
238
|
### Development usage
|
|
239
239
|
|
|
240
|
-
If you want to use Docker in development,
|
|
240
|
+
If you want to use Docker in development, you can build and run the image locally with either docker-compose —
|
|
241
241
|
|
|
242
242
|
```bash
|
|
243
243
|
git clone https://github.com/solid/node-solid-server
|
|
244
244
|
cd node-solid-server
|
|
245
|
-
docker
|
|
245
|
+
docker-compose up -d
|
|
246
246
|
```
|
|
247
247
|
|
|
248
|
-
|
|
248
|
+
— or these manual commands —
|
|
249
|
+
|
|
249
250
|
```bash
|
|
251
|
+
git clone https://github.com/solid/node-solid-server
|
|
252
|
+
cd node-solid-server
|
|
253
|
+
docker build -t node-solid-server .
|
|
254
|
+
|
|
250
255
|
docker run -p 8443:8443 --name solid node-solid-server
|
|
251
256
|
```
|
|
252
257
|
|
|
258
|
+
|
|
253
259
|
This will enable you to login to solid on https://localhost:8443 and then create a new account
|
|
254
260
|
but not yet use that account. After a new account is made you will need to create an entry for
|
|
255
261
|
it in your local (/etc/)hosts file in line with the account and subdomain, i.e. --
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-server",
|
|
3
3
|
"description": "Solid server on top of the file-system",
|
|
4
|
-
"version": "5.6.
|
|
4
|
+
"version": "5.6.21",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Tim Berners-Lee",
|
|
7
7
|
"email": "timbl@w3.org"
|
|
@@ -89,16 +89,16 @@
|
|
|
89
89
|
"ip-range-check": "0.2.0",
|
|
90
90
|
"is-ip": "^3.1.0",
|
|
91
91
|
"li": "^1.3.0",
|
|
92
|
-
"mashlib": "^1.7.
|
|
92
|
+
"mashlib": "^1.7.19",
|
|
93
93
|
"mime-types": "^2.1.34",
|
|
94
94
|
"negotiator": "^0.6.2",
|
|
95
|
-
"node-fetch": "^2.6.
|
|
96
|
-
"node-forge": "^
|
|
95
|
+
"node-fetch": "^2.6.7",
|
|
96
|
+
"node-forge": "^1.2.1",
|
|
97
97
|
"node-mailer": "^0.1.1",
|
|
98
98
|
"nodemailer": "^6.7.2",
|
|
99
99
|
"oidc-op-express": "^0.0.3",
|
|
100
100
|
"owasp-password-strength-test": "^1.3.0",
|
|
101
|
-
"rdflib": "^2.2.
|
|
101
|
+
"rdflib": "^2.2.17",
|
|
102
102
|
"recursive-readdir": "^2.2.2",
|
|
103
103
|
"request": "^2.88.2",
|
|
104
104
|
"rimraf": "^3.0.2",
|