/byt

Byt is file sharing service made easy

Primary LanguageJavaScriptGNU General Public License v2.0GPL-2.0

Byt

Byt is file sharing service made easy

Public platform: https://wayt.ovh

Run your own with Docker

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

Development

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