mirror of
https://github.com/alexohneander/alexohneander-astro.git
synced 2025-12-16 12:10:12 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6cb96c6ab1 | |||
| 8a8269648c | |||
| b921284f4d | |||
| 697b482095 |
@@ -2,7 +2,7 @@ image:
|
||||
repository: alexohneander/alexohneander-astro
|
||||
pullPolicy: IfNotPresent
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: "v2.3.6"
|
||||
tag: "v2.3.7"
|
||||
|
||||
ingress:
|
||||
enabled: true
|
||||
|
||||
@@ -17,6 +17,7 @@ const { centered = false } = Astro.props;
|
||||
href={social.href}
|
||||
className="link-button"
|
||||
title={social.linkTitle}
|
||||
rel="me"
|
||||
>
|
||||
<Fragment set:html={socialIcons[social.name]} />
|
||||
</LinkButton>
|
||||
|
||||
@@ -137,8 +137,8 @@ export const SOCIALS: SocialObjects = [
|
||||
},
|
||||
{
|
||||
name: "Mastodon",
|
||||
href: "https://github.com/satnaing/astro-paper",
|
||||
href: "https://mastodon.social/@alexohneander",
|
||||
linkTitle: `${SITE.title} on Mastodon`,
|
||||
active: false,
|
||||
active: true,
|
||||
},
|
||||
];
|
||||
|
||||
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}"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user