Skip to content

ddm/filedrop

 
 

Repository files navigation

FileDrop

FileDrop is a small web-based file-sharing UI. It can be used as a standalone server in trusted LANs, but it can optionally use Sandstorm for ACLs and sharing.

Try it on Sandstorm

Dependencies

FileDrop requires Go 1.4 to build. Other dependencies are vendored in third_party.

Building and Running Locally

make
./filedrop -address=:8080 -storage=/var/directory/for/files

Building an SPK

make
spk pack filedrop.spk

API

You can download/upload files by using the standard HTTP verbs on the /file/ resource. For example:

# Download foo.jpg
curl -s http://localhost:8080/file/foo.jpg > foo.jpg
# Upload bar.txt
curl -T bar.txt http://localhost:8080/file/

If you're using Sandstorm web keys, remember to use -H 'Authorization: Bearer TOKEN to authorize the request.

License

Apache License 2.0. See LICENSE for details.

This is not an official Google product (experimental or otherwise), it is just code that happens to be owned by Google.

Packages

No packages published

Languages

  • JavaScript 50.6%
  • Go 18.9%
  • Cap'n Proto 12.3%
  • HTML 9.4%
  • Makefile 4.9%
  • CSS 2.5%
  • Shell 1.4%