No description
Find a file
Pierre Dubouilh 1d0d7c3b8c
cleanup js
2018-11-17 17:01:27 +01:00
fixture first 2018-09-12 18:17:13 +02:00
src cleanup js 2018-11-17 17:01:27 +01:00
.gitignore implemented mv rpc 2018-09-21 15:47:46 +02:00
.travis.yml add ci 2018-09-12 18:37:37 +02:00
Dockerfile dockerfile 2018-11-17 01:01:58 +01:00
LICENSE Initial commit 2018-09-11 21:59:31 +02:00
Makefile dockerfile 2018-11-17 01:01:58 +01:00
readme.md dockerfile 2018-11-17 01:01:58 +01:00

gossa

e

Build Status

🎶 A fast and simple webserver for your files. It's dependency-free and with under 250 lines for the server code, easily code-reviewable.

features

  • browse through files/directories
  • upload with drag-and-drop
  • create new folders
  • move files with drag-and-drop and keyboard
  • browse through pictures with a full-screen carousel
  • simple keyboard navigation/shortcuts
  • fast ; fills my 80MB/s AC wifi link

run

# build
make

# run
./gossa -h 192.168.100.33 ~/storage

keyboard shortcuts

  • Arrows/Enter browse throughout the files/directories and pictures
  • Ctrl/Meta + C copy URL to clipboard
  • Ctrl/Meta + D create a new directory
  • Ctrl/Meta + X cut selected path
  • Ctrl/Meta + V paste previously selected paths to directory
  • <any letter> search

built blobs

built blobs are available on the release page.

using with docker

a pretty short docker file is provided

# build docker image
make
docker build -t gossa .

# run
sudo docker run -v ~/ToShare:/shared -p 8001:8001 gossa