2019-08-09 20:24:58 -04:00
2019-08-09 20:24:58 -04:00
2019-08-09 20:24:58 -04:00
2019-08-09 20:24:58 -04:00
2019-08-09 20:24:58 -04:00
2019-03-09 09:20:51 -05:00
2019-08-09 20:24:58 -04:00
2019-03-04 18:13:07 -05:00
2019-03-09 12:38:22 -05:00
2019-08-09 20:24:58 -04:00

Build Status CodeFactor

Docker example

docker run --rm -v $PWD/data:/data -p 3020:3020 -e WS_BUCKET_SECRET=secret simon987/ws_bucket

Environment variables

Name Default
WS_BUCKET_ADDR 0.0.0.0:3020
WS_BUCKET_WORKDIR ./data
WS_BUCKET_LOGLEVEL trace
WS_BUCKET_CONNSTR host=localhost user=ws_bucket dbname=ws_bucket password=ws_bucket sslmode=disable
WS_BUCKET_DIALECT postgres
WS_BUCKET_SECRET default_secret*

* You should change this value!

Running tests

export WS_BUCKET_ADDR=0.0.0.0:3021
export WS_BUCKET_WORKDIR=.

cd test/
go test

Auth

Administration endpoints require HMAC_SHA256 authentication. Request header:

{
    "Timestamp": <Current time (RFC1123)>
    "X-Signature": <HMAC_SHA256(BODY + TIMESTAMP)>
}

Upload endpoint requires a valid upload token:

{
    "X-Upload-Token": <token>
}
Description
No description provided
Readme GPL-3.0 60 KiB
Languages
Go 96.4%
Dockerfile 2.5%
Shell 1.1%