Low-latency file drop web app
 
 
 
 
 
 
Go to file
xenofem 14508183ab organize images better 2022-04-30 01:46:21 -04:00
resources organize images better 2022-04-30 01:46:21 -04:00
src added file expiration and fleshed out the API a bit 2022-04-30 01:38:26 -04:00
static organize images better 2022-04-30 01:46:21 -04:00
.gitignore ignore flamegraph perf data 2022-04-28 01:50:55 -04:00
API.md added file expiration and fleshed out the API a bit 2022-04-30 01:38:26 -04:00
Cargo.lock fix weird end-of-file bug by having downloaders use inotify to directly track changes 2022-04-29 22:36:44 -04:00
Cargo.toml fix weird end-of-file bug by having downloaders use inotify to directly track changes 2022-04-29 22:36:44 -04:00
LICENSE MIT license 2022-04-28 00:49:21 -04:00
README.md tweak RUST_LOG info 2022-04-28 00:54:11 -04:00
flake.lock nix flakes 2022-04-28 00:48:47 -04:00
flake.nix add cargo-flamegraph to dev shell 2022-04-28 01:29:11 -04:00

README.md

transbeam logo: a laser warning sign in trans flag colors

transbeam

A low-latency file drop web app

features

  • One-to-many transfer of large files
  • Simple web UI for sender and receivers
  • Receivers can begin downloading immediately, without needing to wait for the upload to finish
  • Receivers can also download after the upload is complete and the sender has gone offline
  • Easy to send multiple files at once - they're bundled into a zip file for receivers, with zero compression so extraction is quick
  • Sanitises filenames, using sensible non-obnoxious defaults that should be safe across platforms
  • Fires a laser beam that turns you trans

configuration

transbeam is configured with the following environment variables:

  • STORAGE_DIR: path where uploaded files should be stored (default: ./storage)
  • STATIC_DIR: path where the web app's static files live (default: ./static)
  • PORT: port to listen on localhost for http requests (default: 8080)
  • RUST_LOG: log levels, for the app as a whole and/or for specific submodules/libraries. See env_logger's documentation for details.

running

nix flakes

nix run git+https://git.xeno.science/xenofem/transbeam?ref=main

(The Nix package is wrapped with STATIC_DIR set automatically to the correct Nix store path, so it'll serve the static files properly no matter what directory you run it from.)

non-nix

git clone https://git.xeno.science/xenofem/transbeam
cd transbeam
cargo run --release

todo

  • uploader auth
  • downloader auth
  • delete uploads after a while
  • configurable maximum file size