-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #480 from codeforpdx/Development
Version Update from v0.9.0 to v0.10.0
- Loading branch information
Showing
111 changed files
with
3,129 additions
and
2,070 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,20 @@ | ||
## CONCISE description of PR (PR Title) | ||
|
||
--- | ||
## This PR: | ||
Resolves #(put issue number here to link this PR to it) | ||
|
||
**1.** | ||
**2.** If needed, delete if not | ||
**3.** If needed, delete if not | ||
|
||
--- | ||
## The files this PR effects: | ||
|
||
### Components | ||
List file names here | ||
|
||
### Tests | ||
List file names here | ||
|
||
### Other Files | ||
List file names here | ||
|
||
--- | ||
## Screenshots (if applicable): | ||
Add any screenshots/videos here. | ||
|
||
--- | ||
## Additional Context (optional): | ||
Add any other context about the PR here. | ||
|
||
--- | ||
## Future Steps/PRs Needed to Finish This Work (optional): | ||
Add any other steps/PRs that may be needed to continue this work if this PR is just a step in the right direction. | ||
|
||
--- | ||
## Issues needing discussion/feedback (optional): | ||
**1.** | ||
**2.** If needed, delete if not | ||
**3.** If needed, delete if not | ||
**3.** If needed, delete if not |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ bundleStats.html | |
|
||
# environment variables | ||
.env | ||
data/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Stage 1: Build the React app | ||
FROM node:16 AS build | ||
|
||
WORKDIR /app | ||
|
||
COPY package*.json ./ | ||
RUN npm install | ||
|
||
COPY . . | ||
RUN npm run build | ||
|
||
# Stage 2: Create a lightweight image to run the app | ||
FROM nginx:alpine | ||
|
||
COPY --from=build /app/dist /usr/share/nginx/html | ||
|
||
EXPOSE 80 | ||
|
||
CMD ["nginx", "-g", "daemon off;"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: '3.8' | ||
|
||
services: | ||
react-app: | ||
build: | ||
context: ./ | ||
dockerfile: Dockerfile.react # Creates new image for react app | ||
ports: | ||
- "5173:80" | ||
|
||
solid-server: | ||
image: solidproject/community-server:latest # Use updated image or create using Dockerfile | ||
restart: always | ||
user: root | ||
ports: | ||
- "3000:3000" | ||
volumes: | ||
- ./data/solid-data:/data | ||
- ./config/solid-server/solid-config.json:/community-server/config/my-config.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^6.0.0/components/context.jsonld", | ||
"import": [ | ||
"css:CommunitySolidServer/config/app/init/default.json", | ||
"css:CommunitySolidServer/config/app/main/default.json", | ||
"css:CommunitySolidServer/config/app/setup/disabled.json", | ||
"css:CommunitySolidServer/config/app/variables/default.json", | ||
"css:CommunitySolidServer/config/http/handler/default.json", | ||
"css:CommunitySolidServer/config/http/middleware/default.json", | ||
"css:CommunitySolidServer/config/http/notifications/websockets.json", | ||
"css:CommunitySolidServer/config/http/server-factory/https.json", | ||
"css:CommunitySolidServer/config/http/static/default.json", | ||
"css:CommunitySolidServer/config/identity/access/public.json", | ||
"css:CommunitySolidServer/config/identity/email/default.json", | ||
"css:CommunitySolidServer/config/identity/handler/default.json", | ||
"css:CommunitySolidServer/config/identity/ownership/unsafe-no-check.json", | ||
"css:CommunitySolidServer/config/identity/pod/static.json", | ||
"css:CommunitySolidServer/config/identity/registration/enabled.json", | ||
"css:CommunitySolidServer/config/ldp/authentication/dpop-bearer.json", | ||
"css:CommunitySolidServer/config/ldp/authorization/allow-all.json", | ||
"css:CommunitySolidServer/config/ldp/handler/default.json", | ||
"css:CommunitySolidServer/config/ldp/metadata-parser/default.json", | ||
"css:CommunitySolidServer/config/ldp/metadata-writer/default.json", | ||
"css:CommunitySolidServer/config/ldp/modes/default.json", | ||
"css:CommunitySolidServer/config/storage/backend/file.json", | ||
"css:CommunitySolidServer/config/storage/key-value/resource-store.json", | ||
"css:CommunitySolidServer/config/storage/middleware/default.json", | ||
"css:CommunitySolidServer/config/util/auxiliary/empty.json", | ||
"css:CommunitySolidServer/config/util/identifiers/suffix.json", | ||
"css:CommunitySolidServer/config/util/index/default.json", | ||
"css:CommunitySolidServer/config/util/logging/winston.json", | ||
"css:CommunitySolidServer/config/util/representation-conversion/default.json", | ||
"css:CommunitySolidServer/config/util/resource-locker/file.json", | ||
"css:CommunitySolidServer/config/util/variables/default.json" | ||
], | ||
"@graph": [], | ||
} |
Oops, something went wrong.