mirror of
https://github.com/pldubouilh/gossa
synced 2025-12-06 08:22:32 +01:00
readme
This commit is contained in:
parent
dbcda0f87a
commit
2f8c12773b
2 changed files with 23 additions and 23 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -7,6 +7,7 @@ gossa-linux-arm
|
|||
gossa-linux-arm64
|
||||
gossa-mac
|
||||
gossa-windows.exe
|
||||
gossa_test.go
|
||||
|
||||
.vscode
|
||||
fixture/*
|
||||
|
|
|
|||
45
readme.md
45
readme.md
|
|
@ -1,20 +1,21 @@
|
|||
gossa
|
||||
=============
|
||||
|
||||

|
||||

|
||||
|
||||
[](https://travis-ci.org/pldubouilh/gossa)
|
||||
|
||||
🎶 A fast and simple webserver for your files, that's dependency-free and with under 210 lines for the server code, easily code-reviewable.
|
||||
|
||||
### features
|
||||
* browse through files/directories
|
||||
* upload with drag-and-drop
|
||||
* move/rename/delete files
|
||||
* browse through pictures with a full-screen carousel
|
||||
* stream videos directly from the browser
|
||||
* simple keyboard navigation/shortcuts
|
||||
* fast ; fills my 80MB/s AC wifi link
|
||||
* 🔍 files/directories browser
|
||||
* 📩 drag-and-drop file uploader
|
||||
* 🗺️ files handling - move/rename/delete
|
||||
* 📸 picture browser
|
||||
* 📽️ video streaming from the browser
|
||||
* ✍️ simple text editor
|
||||
* ⌨️ keyboard shortcuts
|
||||
* 🥂 speed - showed rates above 100MB/s
|
||||
|
||||
### built blobs
|
||||
built blobs are available on the [release page](https://github.com/pldubouilh/gossa/releases).
|
||||
|
|
@ -28,33 +29,31 @@ make
|
|||
./gossa -h 192.168.100.33 ~/storage
|
||||
```
|
||||
|
||||
### keyboard shortcuts
|
||||
|shortcut | action|
|
||||
|-------------|-------------|
|
||||
|Arrows/Enter | browse through files/directories and pictures|
|
||||
|Ctrl/Meta + C | copy URL to clipboard|
|
||||
|Ctrl/Meta + B | toggle theme (dark/clear)|
|
||||
|\<any letter\> | search|
|
||||
|Ctrl/Meta + E | rename file/folder|
|
||||
|Ctrl/Meta + Del | delete file/folder|
|
||||
|Ctrl/Meta + D | create a new directory|
|
||||
|Ctrl/Meta + X | cut selected path|
|
||||
|Ctrl/Meta + V | paste previously selected paths to directory|
|
||||
|
||||
### ui shortcuts
|
||||
|shortcut | action|
|
||||
| ------------- |-------------|
|
||||
|click new folder icon | create new folder|
|
||||
|click images icon | toggle image carousel|
|
||||
|click pad icon | open file editor|
|
||||
|click file icon | rename item|
|
||||
|double click file icon | delete item|
|
||||
|drag-and-drop item on UI | move item|
|
||||
|drag-and-drop external item | upload file/folders|
|
||||
|
||||
### keyboard shortcuts
|
||||
|shortcut | action|
|
||||
|-------------|-------------|
|
||||
|Arrows/Enter | browse through files/directories and pictures|
|
||||
|Ctrl/Meta + C | copy URL to clipboard|
|
||||
|Ctrl/Meta + E | rename file/folder|
|
||||
|Ctrl/Meta + Del | delete file/folder|
|
||||
|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|
|
||||
|
||||
### using with docker
|
||||
multiple dockerfiles are provided in the `docker` folder. to simply get started just have a look below
|
||||
|
||||
|
||||
```sh
|
||||
# build
|
||||
cd docker
|
||||
|
|
|
|||
Loading…
Reference in a new issue