mirror of
https://github.com/alexohneander/alexohneander-astro.git
synced 2025-06-29 15:01:52 +00:00
Create vscode-debug-settings-collection.md
This commit is contained in:
parent
697b482095
commit
b921284f4d
31
src/content/blog/vscode-debug-settings-collection.md
Normal file
31
src/content/blog/vscode-debug-settings-collection.md
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
author: Alex Wellnitz
|
||||||
|
pubDatetime: 2023-17-09T12:20:27+02:00
|
||||||
|
title: VSCode debug settings Collection
|
||||||
|
postSlug: vscode-debug-settings-collection.md
|
||||||
|
featured: true
|
||||||
|
draft: true
|
||||||
|
tags:
|
||||||
|
- vscode
|
||||||
|
- debug
|
||||||
|
- development
|
||||||
|
ogImage: ""
|
||||||
|
description: In this post, we will show you how to create a MySQL server backup using Kubernetes CronJobs.
|
||||||
|
---
|
||||||
|
|
||||||
|
### Go VSCode debugging
|
||||||
|
**launch.json:**
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Debug Package",
|
||||||
|
"type": "go",
|
||||||
|
"request": "launch",
|
||||||
|
"mode": "debug",
|
||||||
|
"program": "${workspaceRoot}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
Loading…
x
Reference in New Issue
Block a user