mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
854 B
854 B
How to seed Accounts and Pods
If you need to seed accounts and pods,
the --seededPodConfigJson
command line option can be used
with as value the path to a JSON file containing configurations for every required pod.
The file needs to contain an array of JSON objects,
with each object containing at least a podName
, email
, and password
field.
For example:
[
{
"podName": "example",
"email": "hello@example.com",
"password": "abc123"
}
]
You may optionally specify other parameters as described in the Identity Provider documentation.
For example, to use a pre-existing WebID:
[
{
"podName": "example",
"email": "hello@example.com",
"password": "abc123",
"webId": "https://pod.inrupt.com/example/profile/card#me",
"createWebId": false
}
]