From 0c04d90077aef6cecf7dc370243688daea1e9ee8 Mon Sep 17 00:00:00 2001 From: Samu Lang Date: Sun, 22 Mar 2026 17:14:33 +0000 Subject: [PATCH] SR-176: RDF/JS Wrapper guide --- .../solid_nextjs_wrapper_demo_application.md | 29 +++++++++++++++++++ docs/index.md | 1 + 2 files changed, 30 insertions(+) create mode 100644 docs/guides/solid_nextjs_wrapper_demo_application.md diff --git a/docs/guides/solid_nextjs_wrapper_demo_application.md b/docs/guides/solid_nextjs_wrapper_demo_application.md new file mode 100644 index 0000000..5fdb05e --- /dev/null +++ b/docs/guides/solid_nextjs_wrapper_demo_application.md @@ -0,0 +1,29 @@ +# Solid + Next.js + RDF/JS Wrapper: Demo Application + +This is a tutorial on how to create a Solid Application using [Next.js](https://nextjs.org/), [RDF/JS Wrapper](https://github.com/rdfjs/wrapper) and [ACP](https://solidproject.org/TR/acp). + +The following instructions are meant to guide you through running the Solid Next Wrapper Demo Application ([code is available on github](https://github.com/solid/solid-next-wrapper-demo)). + +## Prerequisite + +Download the [solid/solid-next-wrapper-demo](https://github.com/solid/solid-next-wrapper-demo/) code on GitHub. + +## How To + +Follow the [README instructions](https://github.com/solid/solid-next-wrapper-demo) to setup and run the demo app. + +The application code is commented to help you understand and learn a simple solid application development pattern. + +## About Solid Servers + +The Solid Next Wrapper application runs a [Community Solid Server](https://communitysolidserver.github.io/CommunitySolidServer/latest/) (CSS) instance in development. + +It is easy to configure an alternative solid server via the environment variable `NEXT_PUBLIC_BASE_URI`. + +When you want to run a similar application in production, you will want to configure it so that it uses a solid server available via the internet instead of localhost. + +You could [create a Pod](https://solidproject.org/get_a_pod) with one of the existing providers. + +Or you could host your own Pod with the Community Solid Server. + +You can follow the instructions in [solid/css-azure-app-service](https://github.com/solid/css-azure-app-service) to deploy the CSS to Azure. diff --git a/docs/index.md b/docs/index.md index 959818c..37ff626 100644 --- a/docs/index.md +++ b/docs/index.md @@ -8,3 +8,4 @@ Welcome! This site provides guides and resources to help you start building appl - [Authenticating with a Node.js Script](guides/authenticating_with_a_script) - [Demo Application using Solid + Next.js + LDO](guides/solid_nextjs_ldo_demo_application) - [Hosting the Community Solid Server in an Azure App Service](guides/hosting_the_community_solid_server_in_an_azure_app_service) +- [Demo Application using Solid + Next.js + RDF/JS Wrapper](guides/solid_nextjs_wrapper_demo_application)