A simple artifact store server.
$ export ARTISTORE_SECRET=$(artistore secret)
$ artistore serve --store ./path/to/storage
$ artistore publish prefix/filename.txt
or
$ export ARTISTORE_TOKEN=$(artistore token prefix/)
$ curl -H "Authorization: bearer ${ARTISTORE_TOKEN}" --data-binary '@file.txt' http://localhost:3000/prefix/filename.txt
$ artistore get prefix/filename.txt
or
$ curl -L https://localhost:3000/prefix/filename.txt