Skip to content

Commit c016e87

Browse files
Merge pull request #704 from codeforpdx/Development
[Version Upgrade] - Updating Master version from 1.1.0 to 1.2.0
2 parents 3ee6a04 + d3818ba commit c016e87

File tree

15 files changed

+266
-96
lines changed

15 files changed

+266
-96
lines changed

config/solid-server/readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
solid-remote-server-compose.yaml && solid-remote-server-config.json are templates for deploying the server remotely. The server URL can be updated as needed, the current setup is for our deployment on opencommons.
2+
3+
The config should be stored as /config/solid-server/solid-config.json and solid-remote-server-compose.yaml stored at the community solid server root.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
services:
2+
solid-server:
3+
image: solidproject/community-server:7.0
4+
restart: always
5+
user: root
6+
ports:
7+
- '3000:3000'
8+
environment:
9+
- BASE_URL=https://opencommons.net
10+
command: ['--baseUrl', 'https://opencommons.net']
11+
volumes:
12+
- ./data/solid-data:/data
13+
- ./config/solid-server/solid-config.json:/community-server/config/my-config.json
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^7.0.0/components/context.jsonld",
3+
"import": [
4+
"css:config/app/init/static-root.json",
5+
"css:config/app/main/default.json",
6+
"css:config/app/variables/default.json",
7+
"css:config/http/handler/default.json",
8+
"css:config/http/middleware/default.json",
9+
"css:config/http/notifications/all.json",
10+
"css:config/http/server-factory/http.json",
11+
"css:config/http/static/default.json",
12+
"css:config/identity/access/public.json",
13+
"css:config/identity/email/default.json",
14+
"css:config/identity/handler/default.json",
15+
"css:config/identity/oidc/default.json",
16+
"css:config/identity/ownership/token.json",
17+
"css:config/identity/pod/static.json",
18+
"css:config/ldp/authentication/dpop-bearer.json",
19+
"css:config/ldp/authorization/webacl.json",
20+
"css:config/ldp/handler/default.json",
21+
"css:config/ldp/metadata-parser/default.json",
22+
"css:config/ldp/metadata-writer/default.json",
23+
"css:config/ldp/modes/default.json",
24+
"css:config/storage/backend/file.json",
25+
"css:config/storage/key-value/resource-store.json",
26+
"css:config/storage/location/pod.json",
27+
"css:config/storage/middleware/default.json",
28+
"css:config/util/auxiliary/acl.json",
29+
"css:config/util/identifiers/suffix.json",
30+
"css:config/util/index/default.json",
31+
"css:config/util/logging/winston.json",
32+
"css:config/util/representation-conversion/default.json",
33+
"css:config/util/resource-locker/file.json",
34+
"css:config/util/variables/default.json"
35+
],
36+
"@graph": [],
37+
"servers": [
38+
{
39+
"serverUri": "https://opencommons.net/",
40+
"locations": [
41+
{
42+
"url": "https://opencommons.net/",
43+
"availableMediaTypes": ["text/turtle"],
44+
"basePath": "/",
45+
"description": "This config was generated by generator and very basic"
46+
}
47+
]
48+
}
49+
],
50+
"baseUrl": "https://opencommons.net/"
51+
}

env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VITE_SOLID_IDENTITY_PROVIDER="http://localhost:3000/"
22
VITE_SOLID_POD_SERVER="http://localhost:3000/"
33
VITE_SUGGESTED_OIDC_OPTIONS="http://localhost:3000/, https://opencommons.net/, https://solidcommunity.net/, https://login.inrupt.com/, https://inrupt.net/"
4-
VITE_OIDC_WEBIDS = '{"http://localhost:3000/": "http://localhost:3000/user/profile/card#me", "https://opencommons.net/": "http://opencommons.net/user/profile/card#me", "https://solidcommunity.net/": "https://user.solidcommunity.net/profile/card#me", "https://login.inrupt.com/": "https://id.inrupt.com/user", "https://inrupt.net/": "https://id.inrupt.com/user"}'
4+
VITE_OIDC_WEBIDS = '{"http://localhost:3000/": "http://localhost:3000/user/profile/card#me", "https://opencommons.net/": "https://opencommons.net/user/profile/card#me", "https://solidcommunity.net/": "https://user.solidcommunity.net/profile/card#me", "https://login.inrupt.com/": "https://id.inrupt.com/user", "https://inrupt.net/": "https://id.inrupt.com/user"}'
55
VITE_CLIENT_ID_DOC="http://localhost:3000/clientAppId.json"

0 commit comments

Comments
 (0)