Home

Awesome

<p align="center"> <strong>Annoucement: Filestash is now my full time job and I'm building in public</strong> <br><a href="https://www.youtube.com/watch?v=6G60_My7Tgs">https://www.youtube.com/watch?v=6G60_My7Tgs</a> </p>

screenshot

<p align="center"> <a href="https://github.com/mickael-kerjean/contributors" alt="Contributors"> <img src="https://img.shields.io/github/contributors/mickael-kerjean/filestash" style="max-width:100%;"> </a> <a href="https://hub.docker.com/r/machines/filestash" alt="Docker Hub"> <img src="https://img.shields.io/docker/pulls/machines/filestash" style="max-width:100%;"> </a> <a href="https://kiwiirc.com/nextclient/#irc://irc.libera.chat/#filestash?nick=guest??" alt="Chat on IRC"> <img src="https://img.shields.io/badge/IRC-%23filestash-brightgreen.svg" style="max-width:100%;"> </a> </p> <p align="center"> A Dropbox-like file manager that let you manage your data anywhere it is located:<br> <a href="https://www.filestash.app/ftp-client.html">FTP</a> • FTPS • <a href="https://www.filestash.app/ssh-file-transfer.html">SFTP</a> • <a href="https://www.filestash.app/webdav-client.html">WebDAV</a> • Git • <a href="https://www.filestash.app/s3-browser.html">S3</a> • NFS • Samba • Artifactory • <a href="https://www.filestash.app/ldap-browser.html">LDAP</a> • Mysql <br> Storj • CardDAV • CalDAV • Backblaze B2 • <a href="https://www.filestash.app/s3-browser.html">Minio</a> <br> Dropbox • Google Drive </p> <p align="center"> <a href="http://demo.filestash.app"> <img src="https://raw.githubusercontent.com/mickael-kerjean/filestash_images/master/.assets/button_demo.png" alt="demo button" /> </a> </p>

Features

Documentation

Screenshots

<p align="center"> <a href="https://demo.filestash.app"> <img src="https://raw.githubusercontent.com/mickael-kerjean/filestash_images/master/.assets/navigation.gif" alt="user experience on navigation" /> </a> </p> <p align="center"> <a href="http://demo.filestash.app"> <img src="https://raw.githubusercontent.com/mickael-kerjean/filestash_images/master/.assets/photo_management.gif" alt="user experience on medias" /> </a> </p>

The core idea

Filestash started as an attempt to solve the Dropbox problem by abstracting the storage aspect so you can "bring your own backend" by implementing this interface:

type IBackend interface {
	Init(params map[string]string, app *App) (IBackend, error) // constructor
	Ls(path string) ([]os.FileInfo, error)           // list files in a folder
	Cat(path string) (io.ReadCloser, error)          // download a file
	Mkdir(path string) error                         // create a folder
	Rm(path string) error                            // remove something
	Mv(from string, to string) error                 // rename something
	Save(path string, file io.Reader) error          // save a file
	Touch(path string) error                         // create a file
	LoginForm() Form                                 // dynamic form generation for the login
}

It has evolved with plugins which are the lego bricks you can assemble together to form a solution that works for you. You can bring your own identity provider, your own authorisation, your own search and more. If there's something you want, plugin will likely make it possible.

Some outside the box example of this "filesystem as a framework" ideas we've done for the sake of science:

<!-- if you feel curious, we wrote a more in depth article about the [interesting ideas in Filestash]() -->

Support

Credits