bruschetta

A simple golang web based file browser
Log | Files | Refs | LICENSE

readme.md (682B)


      1 # Bruschetta
      2 
      3 A simple golang web based file browser. Inspired by [h5ai](https://github.com/lrsjng/h5ai), but with fewer features and probably more bugs.
      4 
      5 ## Running
      6 
      7 ```
      8 cd bruschetta
      9 go run . -d ~/your/directory/ -p 8080
     10 ```
     11 
     12 Then access the servers IP address via a web browser on port `8080`.
     13 
     14 ## Building
     15 
     16 The application is also buildable via your usual `go build -o bruschetta .`.
     17 
     18 ## Features
     19 * List and thumbnail views
     20 * Filter current directory
     21 * Thumbnails generated on the fly and cached
     22 * Dotfiles are hidden, but still accessible
     23 * Collapsable folder tree
     24 * Sortable Name, Size and Modified columns
     25 * No dependencies outside stdlib
     26 
     27 ## Screenshot
     28 
     29 ![](screenshot.png)