Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 667 Bytes

README.md

File metadata and controls

53 lines (36 loc) · 667 Bytes

Golang Backend for Webix File Manager

How to build

go build

How to start

Normal start

./wfs-ls path-to-web-root

Readonly mode

./wfs-ls -readonly path-to-web-root

Set upload limit

./wfs-ls -upload 50000000

Use external preview generator

./wfs-ls -preview http://localhost:3201/preview path-to-web-root

Other ways of configuration

  • config.yml in the app's folder
uploadlimit: 10000000
root: ./
port: 80
readonly: false
preview: ""
  • env vars
APP_ROOT=/files APP_UPLOADLIMIT=300000 wfs-ls