Skip to content

Commit

Permalink
Merge pull request #704 from codeforpdx/Development
Browse files Browse the repository at this point in the history
[Version Upgrade] - Updating Master version from 1.1.0 to 1.2.0
  • Loading branch information
Jared-Krajewski authored Dec 13, 2024
2 parents 3ee6a04 + d3818ba commit c016e87
Show file tree
Hide file tree
Showing 15 changed files with 266 additions and 96 deletions.
3 changes: 3 additions & 0 deletions config/solid-server/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
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.

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.
13 changes: 13 additions & 0 deletions config/solid-server/solid-remote-server-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
services:
solid-server:
image: solidproject/community-server:7.0
restart: always
user: root
ports:
- '3000:3000'
environment:
- BASE_URL=https://opencommons.net
command: ['--baseUrl', 'https://opencommons.net']
volumes:
- ./data/solid-data:/data
- ./config/solid-server/solid-config.json:/community-server/config/my-config.json
51 changes: 51 additions & 0 deletions config/solid-server/solid-remote-server-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^7.0.0/components/context.jsonld",
"import": [
"css:config/app/init/static-root.json",
"css:config/app/main/default.json",
"css:config/app/variables/default.json",
"css:config/http/handler/default.json",
"css:config/http/middleware/default.json",
"css:config/http/notifications/all.json",
"css:config/http/server-factory/http.json",
"css:config/http/static/default.json",
"css:config/identity/access/public.json",
"css:config/identity/email/default.json",
"css:config/identity/handler/default.json",
"css:config/identity/oidc/default.json",
"css:config/identity/ownership/token.json",
"css:config/identity/pod/static.json",
"css:config/ldp/authentication/dpop-bearer.json",
"css:config/ldp/authorization/webacl.json",
"css:config/ldp/handler/default.json",
"css:config/ldp/metadata-parser/default.json",
"css:config/ldp/metadata-writer/default.json",
"css:config/ldp/modes/default.json",
"css:config/storage/backend/file.json",
"css:config/storage/key-value/resource-store.json",
"css:config/storage/location/pod.json",
"css:config/storage/middleware/default.json",
"css:config/util/auxiliary/acl.json",
"css:config/util/identifiers/suffix.json",
"css:config/util/index/default.json",
"css:config/util/logging/winston.json",
"css:config/util/representation-conversion/default.json",
"css:config/util/resource-locker/file.json",
"css:config/util/variables/default.json"
],
"@graph": [],
"servers": [
{
"serverUri": "https://opencommons.net/",
"locations": [
{
"url": "https://opencommons.net/",
"availableMediaTypes": ["text/turtle"],
"basePath": "/",
"description": "This config was generated by generator and very basic"
}
]
}
],
"baseUrl": "https://opencommons.net/"
}
2 changes: 1 addition & 1 deletion env.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VITE_SOLID_IDENTITY_PROVIDER="http://localhost:3000/"
VITE_SOLID_POD_SERVER="http://localhost:3000/"
VITE_SUGGESTED_OIDC_OPTIONS="http://localhost:3000/, https://opencommons.net/, https://solidcommunity.net/, https://login.inrupt.com/, https://inrupt.net/"
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"}'
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"}'
VITE_CLIENT_ID_DOC="http://localhost:3000/clientAppId.json"
Loading

0 comments on commit c016e87

Please sign in to comment.