You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
dependabot[bot] 51a953b7ad Bump terser from 5.10.0 to 5.14.2 in /web 8 months ago
.github/workflows ci: Fix Docker tagging 1 year ago
deployments Add deployments quickstart 2 years ago
web Bump terser from 5.10.0 to 5.14.2 in /web 2 months ago
.dockerignore Fix Dockerfile, clean up *ignore 2 years ago
.gitignore Fix Dockerfile, clean up *ignore 2 years ago
Dockerfile chore: Bump Go version to 1.17 1 year ago
LICENSE Create LICENSE 1 year ago
Makefile Fix Dockerfile, clean up *ignore 2 years ago
README.md Improve description 2 years ago
assets.go Initial create dialogue, switch to tailwindcss 2 years ago
credential.go Form handler, saver and style timprovements 2 years ago
go.mod Handle create, fix upload UI 2 years ago
go.sum Handle create, fix upload UI 2 years ago
handlers-s3.go feat: Upgrade versions, introduce Uppy batch signing 1 year ago
handlers.go Prevent overwriting files 2 years ago
helpers.go Prevent overwriting files 2 years ago
logger.go Split out templates, add readiness endpoints 2 years ago
main.go feat: Upgrade versions, introduce Uppy batch signing 1 year ago
readyz.go Split out templates, add readiness endpoints 2 years ago
s3.go Remove default timeout, bump Alpine version 1 year ago
store.go Form handler, saver and style timprovements 2 years ago

README.md

upl

A dropbox backed by any S3 bucket.

upl allows you to create dropboxes by providing the credentials for any S3-compatible bucket. A link will be generated that can be visited in a web browser to upload files. Links expire after a configurable amount of time.

  • Simple web interface
  • Works with large files by using S3 multipart uploads, powered by Uppy
  • Remembers previously created dropboxes and uploaded files
  • Single fat binary

Screenshot 1Screenshot 2

Building

You'll need:

  • Node.js
  • Go
  • make
make TAGS=production

Alternatively, docker build . this project.

Deploying

To deploy as a single binary, build it from source and run:

export REDIS_CONNECTION=simple:redis-hostname:6379
export LISTEN=:8080
./upl

For example Kubernetes manifests or Docker Compose files, see the deployments folder.