diff --git a/README.md b/README.md index 51270ff..f3d360e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,28 @@ Username | Role | Default password | Description -------- | ------------- | ---------------- | ----------- fedoraAdmin | fedoraAdmin | fedoraAdmin | Has full privileges on fedora +Fedora is deployed to the `fcrepo` context of Tomcat. +i.e. +``` +> curl -ufedoraAdmin:fedoraAdmin http://localhost:8080/fcrepo/rest/ + +@prefix rdf: . +@prefix fedora: . +@prefix ldp: . + + + fedora:created "2023-12-12T14:06:11.200967Z"^^ ; + fedora:lastModified "2023-12-12T14:06:11.200967Z"^^ ; + rdf:type ldp:BasicContainer ; + rdf:type ldp:Resource ; + rdf:type fedora:Resource ; + rdf:type fedora:RepositoryRoot ; + rdf:type ldp:RDFSource ; + rdf:type ldp:Container ; + rdf:type fedora:Container ; + fedora:hasTransactionProvider . +``` + If you need additional users or don't want to provide the password for fedoraAdmin via a environment variable, you can specify your own `tomcat-users.xml` file with the environment variable `TOMCAT_USERS_FILE`, e.g: ```