zero-knowledge file sharing
at main 25 lines 366 B view raw view rendered
1# drop 2 3A minimal file sharing app with zero-knowledge storage. 4 5## Features 6 7- Client-side encryption (AES-256-GCM) 8- Configurable file expiry 9- Burn after read 10- Preview for images, video, audio, and text 11 12## Running 13 14Requires [Bun](https://bun.sh). 15See `.env.example` for configuration. 16 17```sh 18bun start 19``` 20 21For development with hot reload: 22 23```sh 24bun dev 25```