solid-server 5.6.18 → 5.6.22

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 CHANGED
@@ -4,6 +4,7 @@ FROM node:lts
4
4
  RUN mkdir -p /usr/src/app
5
5
  WORKDIR /usr/src/app
6
6
  COPY package.json /usr/src/app/
7
+ COPY package-lock.json /usr/src/app/
7
8
  RUN npm install
8
9
  COPY . /usr/src/app
9
10
 
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, then you can build it locally with:
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 build -t node-solid-server .
245
+ docker-compose up -d
246
246
  ```
247
247
 
248
- Run with:
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. --
@@ -0,0 +1,10 @@
1
+ version: "3"
2
+ services:
3
+ solid-server:
4
+ build: .
5
+ container_name: solid
6
+ ports:
7
+ - "8443:8443"
8
+ entrypoint: npm run solid start -- --no-reject-unauthorized
9
+ environment:
10
+ - NODE_TLS_REJECT_UNAUTHORIZED=0
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.18",
4
+ "version": "5.6.22",
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.16",
92
+ "mashlib": "^1.7.20",
93
93
  "mime-types": "^2.1.34",
94
94
  "negotiator": "^0.6.2",
95
- "node-fetch": "^2.6.6",
96
- "node-forge": "^0.10.0",
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.15",
101
+ "rdflib": "^2.2.17",
102
102
  "recursive-readdir": "^2.2.2",
103
103
  "request": "^2.88.2",
104
104
  "rimraf": "^3.0.2",