mirror of
https://github.com/alexohneander/alexohneander-astro.git
synced 2025-12-16 20:20:11 +00:00
941 B
941 B
author, pubDatetime, title, postSlug, featured, draft, tags, ogImage, description
| author | pubDatetime | title | postSlug | featured | draft | tags | ogImage | description | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Alex Wellnitz | 2023-17-09T12:20:27+02:00 | VSCode debug settings Collection | vscode-debug-settings-collection.md | true | true |
|
In this post, we will show you how to create a MySQL server backup using Kubernetes CronJobs. |
Go VSCode debugging
launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Package",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceRoot}"
}
]
}
Java Remote VSCode debugging
launch.json:
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Attach)",
"projectName": "MyApplication",
"request": "attach",
"hostName": "localhost",
"port": 8787
}
]