This commit is contained in:
27
docker/ssh-server/.vscode/launch.json
vendored
Normal file
27
docker/ssh-server/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
|
||||
{
|
||||
"name": "Python: Remote Attach",
|
||||
"type": "debugpy",
|
||||
"request": "attach",
|
||||
"connect": {
|
||||
"host": "localhost",
|
||||
"port": 5678
|
||||
},
|
||||
"pathMappings": [
|
||||
{
|
||||
"localRoot": "${workspaceFolder}/app",
|
||||
"remoteRoot": "/app"
|
||||
}
|
||||
],
|
||||
"justMyCode": false,
|
||||
"preLaunchTask": "debug"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
26
docker/ssh-server/.vscode/tasks.json
vendored
Normal file
26
docker/ssh-server/.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "debug",
|
||||
"type": "shell",
|
||||
"command": "RUN_ENV=dev ./scripts/run-dev.sh",
|
||||
"problemMatcher": [],
|
||||
"detail": "Runs the container with environment from .env"
|
||||
},
|
||||
{
|
||||
"label": "build: debug",
|
||||
"type": "shell",
|
||||
"command": "BUILD_ENV=dev ./scripts/build.sh",
|
||||
"problemMatcher": [],
|
||||
"detail": "Builds docker image with debug requirements"
|
||||
},
|
||||
{
|
||||
"label": "build: production",
|
||||
"type": "shell",
|
||||
"command": "./scripts/build.sh",
|
||||
"problemMatcher": [],
|
||||
"detail": "Builds docker image for productions"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user