A simple HTTP file server with PUT, GET and DELETE methods.
DIRECTORY
– directory path to write to and read files from DIRECTORY=content
(relative)SERVER_ADDR
– server socket address SERVER_ADDR=0.0.0.0:8000
$ cargo run
$ curl -T <file_path> localhost:8000
3718021f-1c23-4dcb-9a90-6d1a74709744
$ curl localhost:8000/3718021f-1c23-4dcb-9a90-6d1a74709744
<file>
$ curl -X delete localhost:8000/3718021f-1c23-4dcb-9a90-6d1a74709744