bruschetta

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

readme.md (654B)


      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 view
     20 * Thumbnails generated on the fly and cached
     21 * Dotfiles are hidden, but still accessible
     22 * Collapsable folder tree
     23 * Sortable Name, Size and Modified columns
     24 * No dependencies outside stdlib
     25 
     26 ## Screenshot
     27 
     28 ![](screenshot.png)