Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 496 Bytes

readme.md

File metadata and controls

26 lines (22 loc) · 496 Bytes

SRS module

How to run

docker build . docker exec -it srs-api node ace migration:run docker-compose up

How to debug

On VSCode add this to your launch.json config file, it will attach your already running docker container

{
 "version": "0.2.0",
 "configurations": [
   {
     "type": "node",
     "request": "attach",
     "name": "Docker: Attach to Node",
     "remoteRoot": "/usr/app"
   }
 ]
}

How to run tests

docker exec -it srs-api node ace test