Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 621 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 621 Bytes

Backend for Timecodes Chrome extension

Coverage Status

Development

$ docker-compose up --build app_dev

Run the whole test suite

$ docker-compose build app_test
$ docker-compose run app_test go test ./... -cover

Run a single test

$ docker-compose build app_test
$ docker-compose run app_test go test -run Test%TEST_FUNCTION_NAME%

Build for using in production

$ docker-compose build app
$ docker-compose up --no-deps -d app