Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FS-4942: adding launcher script and docket attach #122

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@
}
]
},
{
"name": "Docker Runner: Form Runner",
"type": "node",
"request": "attach",
"address": "localhost",
"port": 9228,
"localRoot": "${workspaceFolder}/apps/digital-form-builder-adapter/runner",
"remoteRoot": "/usr/src/app/digital-form-builder-adapter/runner"
},
{
"name": "Docker Runner: Form Designer",
"type": "node",
"request": "attach",
"address": "localhost",
"port": 9229,
"localRoot": "${workspaceFolder}/apps/digital-form-builder-adapter/designer",
"remoteRoot": "/usr/src/app/digital-form-builder-adapter/designer"
},
{
"name": "Docker Runner: Pre-Award",
"type": "debugpy",
Expand All @@ -63,7 +81,7 @@
"remoteRoot": "."
}
]
},
}
],
"compounds": [
{
Expand All @@ -72,7 +90,9 @@
"Docker Runner: Data Store",
"Docker Runner: Fund Application Builder",
"Docker Runner: Notification",
"Docker Runner: Pre-Award"
"Docker Runner: Pre-Award",
"Docker Runner: Form Runner",
"Docker Runner: Form Designer"
],
"stopAll": true
}
Expand Down
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,10 @@ services:
build:
context: ./apps/digital-form-builder-adapter
dockerfile: ./designer/Dockerfile
command: yarn designer production
command: yarn designer dev
ports:
- 3000:3000
- 9229:9229
volumes:
- './certs:/app-certs'
env_file:
Expand Down Expand Up @@ -149,7 +150,7 @@ services:
build:
context: ./apps/digital-form-builder-adapter
dockerfile: ./runner/Dockerfile
command: yarn runner production
command: yarn runner dev
ports:
- 3009:3009
- 9228:9228
Expand Down