Emelia Smith bc6869579a docs: updating seeding pods to reference new URLs
Inrupt PodSpaces has been migrated to ESS 2.0 and the URLs have all changed. This change updates the documentation to reference the new URLs. https://inrupt.com/blog/pod-spaces-upgrade
2022-07-28 14:13:06 +02:00

1008 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 set up a pod without registering the generated WebID with the Identity Provider:

[
  {
    "podName": "example",
    "email": "hello@example.com",
    "password": "abc123",
    "webId": "https://id.inrupt.com/example",
    "register": false
  }
]

This feature cannot be used to register pods with pre-existing WebIDs, which requires an interactive validation step.