A simple service for PUTting & GETting UUIDs, provided a key.
This is a Go web service, backed by MongoDB, running on Docker, with Compose for local development.
Start a uuid-service instance and link it to a MongoDB instance:
docker run --name some-uuid-service --link some-mongo:mongo -d conortm/uuid-serviceOnce you have the service running at http://my-uuid-service.com, do the following:
To create a new UUID, run:
curl -v -X PUT http://my-uuid-service.com/uuid/my-keyNote: A response status of 201 Created indicates a successfully created UUID.
A status of 200 OK indicates that the UUID already exists for the provided key.
To get an existing UUID, run:
curl -v http://my-uuid-service.com/uuid/my-keyGet a local instance up and running with:
docker-compose up -dNote: Substitute my-uuid-service.com above with localhost.