# Start a local server. mvn jetty:run # Show the front page of server. # Take tour of metadata, endorsers, query, upload. http://localhost:8080 # Show that there are no entries in database. http://localhost:8080/metadata # Upload two of the metadata files via the browser. http://localhost:8080/upload Show the emails that are generated. Abort the first upload to show that the entry is not added. Repeat and confirm to show entries. # Upload one via the command line. stratus-upload-image \ --marketplace-endpoint=http://localhost:8080/metadata \ --marketplace-only \ linux-30-1.0-i686-base-1.0.xml # Query for all OS information. select distinct ?os ?identifier where { ?x ?identifier . ?x ?os } # Query for images signed by a user. select distinct ?identifier ?email ?created where { ?x ?identifier; ?endorsement . ?endorsement ?endorser; ?created . ?endorser ?email . FILTER (?email = "stuart.kenny@scss.tcd.ie")}