Byt is file sharing service made easy
Public platform: https://wayt.ovh
docker run --name byt --restart=always -p 80:8080 maxwayt/byt:latest
You can also specify a data directory
docker run --name byt --restart=always -p 80:8080 -v /local/data:/data maxwayt/byt:latest
Install npm dependencies
npm install
Minify web js/css
npm install -g grunt-cli
grunt
Generate static file
make generate
Run Golang web server
make run
Run tests
make test