forked from solid/solid-next-ldo-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 1.07 KB
/
.env.example
File metadata and controls
21 lines (16 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Example environment variables for this project
# Copy this file to `.env.local` (or `.env`) and fill in real values before running the app.
# Notice the "NEXT_PUBLIC" prefix so they are available in the browser https://nextjs.org/docs/pages/guides/environment-variables
# The URI of the Solid container used by the demo Community Solid Server
# Default for local dev (Community Solid Server started by `npm run start:css`)
NEXT_PUBLIC_BASE_URI="http://localhost:3001/"
# The manifest resource file used by the app (relative to the container root)
NEXT_PUBLIC_MANIFEST_RESOURCE_URI="resource.ttl"
# Admin WebID used for booting the demo (replace with your WebID)
NEXT_PUBLIC_ADMIN_WEBID="https://id.inrupt.com/your-webid"
# OIDC issuer URL for authentication
# Default Inrupt provider, can be changed to other Solid-compatible providers
NEXT_PUBLIC_OIDC_ISSUER="https://login.inrupt.com"
# Notes:
# - Never commit secrets. This file is safe to commit because it contains placeholders only.
# - For private credentials (if any), keep them in `.env` or `.env.local` which are ignored by git.