All Projects → uhthomas → kipp

uhthomas / kipp

Licence: GPL-3.0 License
A flexible file storage server

Programming Languages

go
31211 projects - #10 most used programming language
Starlark
911 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to kipp

lolisafe
Blazing fast file uploader and awesome bunker written in node! 🚀
Stars: ✭ 181 (+448.48%)
Mutual labels:  files, upload, file-upload, file-sharing
Pomf
Simple file uploading and sharing
Stars: ✭ 535 (+1521.21%)
Mutual labels:  files, upload, file-upload, file-sharing
Telegram Upload
Upload and download files from Telegram up to 2GiB using your account
Stars: ✭ 223 (+575.76%)
Mutual labels:  files, upload, file-upload
Linx Server
Self-hosted file/code/media sharing website. ~~~~~~~~~~~~~~~~~~~ Demo: https://demo.linx-server.net/
Stars: ✭ 1,044 (+3063.64%)
Mutual labels:  upload, file-upload, file-sharing
Meteor-Files-Demos
Demos for ostrio:files package
Stars: ✭ 51 (+54.55%)
Mutual labels:  upload, file-upload, file-sharing
Express Fileupload
Simple express file upload middleware that wraps around busboy
Stars: ✭ 1,069 (+3139.39%)
Mutual labels:  files, upload, file-upload
React Uploady
Modern file uploading - components & hooks for React
Stars: ✭ 372 (+1027.27%)
Mutual labels:  files, upload, file-upload
Chibisafe
Blazing fast file uploader and awesome bunker written in node! 🚀
Stars: ✭ 657 (+1890.91%)
Mutual labels:  files, upload, file-upload
Uploadcare Widget
Uploadcare Widget, an ultimate tool for HTML5 file upload supporting multiple file upload, drag&drop, validation by file size/file extension/MIME file type, progress bar for file uploads, image preview.
Stars: ✭ 183 (+454.55%)
Mutual labels:  files, upload, file-upload
rustypaste
A minimal file upload/pastebin service.
Stars: ✭ 102 (+209.09%)
Mutual labels:  upload, file-upload, file-sharing
filestack-ios
Official iOS SDK for Filestack - API and content management system that makes it easy to add powerful file uploading and transformation capabilities to any web or mobile application.
Stars: ✭ 44 (+33.33%)
Mutual labels:  files, upload
cpomf
Pomf API compatible file host written in Crystal - The software behind nya.is.
Stars: ✭ 36 (+9.09%)
Mutual labels:  file-upload, file-sharing
zipline
A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!
Stars: ✭ 215 (+551.52%)
Mutual labels:  file-upload, file-sharing
PHP-FileUpload
Simple and convenient file uploads — secure by default
Stars: ✭ 53 (+60.61%)
Mutual labels:  files, upload
yogurl
Serve files and code over HTTP in one command. The CLI for http://yogurl.io
Stars: ✭ 45 (+36.36%)
Mutual labels:  files, file-sharing
go-storage
A vendor-neutral storage library for Golang: Write once, run on every storage service.
Stars: ✭ 387 (+1072.73%)
Mutual labels:  files, storage
nucked-truth-of-files
HollyJS Moscow
Stars: ✭ 14 (-57.58%)
Mutual labels:  files, upload
Transfer.sh
Easy file sharing from your Android device!
Stars: ✭ 14 (-57.58%)
Mutual labels:  file-upload, file-sharing
upload
How to Upload a File to a Server in PHP
Stars: ✭ 83 (+151.52%)
Mutual labels:  files, file-upload
filesharing
Files sharing application made in PHP
Stars: ✭ 52 (+57.58%)
Mutual labels:  file-upload, file-sharing

kipp

Go Reference Go Report Card

Getting started

The easiest way to get started with kipp is by using the image published to Docker Hub. The service is then available simply by running:

docker pull uhthomas/kipp
docker run uhthomas/kipp

Databases

Databases can be configured using the --database flag. The flag requires the input be parsable as a URL. See the url.Parse docs for more info.

Badger

Badger is a fast, embedded database which is great for single instances.

SQL

Kipp uses a generic SQL driver, but currently only loads:

As long as a database supports Go's sql package, it can be used. Please file an issue for requests.

File systems

File systems can be configured using the --filesystem flag. The flag requires the input be parsable as a URL. See the url.Parse docs for more info.

Local (your local file system)

The local filesystem does not require any special formatting, and can be used like a regular path such

--filesystem /path/to/files

AWS S3

AWS S3 requires the s3 scheme, and has the following syntax:

--filesystem s3://some-token:some-secret@some-region/some-bucket?endpoint=some-endpoint.

The region and bucket are required.

The user info section is optional, if present, will create new static credentials. Otherwise, the default AWS SDK credentials will be used.

The endpoint is optional, and will use the default AWS endpoint if not present. This is useful for using S3-compatible services such as:

Policy

Required actions:

  • s3:DeleteObject
  • s3:GetObject
  • s3:PutObject

This is subject to change in future as more features are added.

Building from source

Kipp builds, tests and compiles using Bazel. To run/build locally with bazel:

git clone [email protected]:uhthomas/kipp
cd kipp
bazel run //cmd/kipp

API

Kipp has two main components; uploading files and downloading files. Files can be uploaded by POSTing a multipart form to the / endpoint like so:

curl https://kipp.6f.io -F file="some content"

The service will then respond with a 302 (See Other) status and the location of the file. It will also write the location to the response body.

Kipp also serves all files located in the web directory by default, but can either be disabled or changed to a different location.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].