added gitea entry

This commit is contained in:
2026-09-25 07:22:03 +02:00
parent 43203af33e
commit 03e23f9802
6 changed files with 60 additions and 1 deletions
+5
View File
@@ -54,6 +54,11 @@
"id": "cnn_website_4", "id": "cnn_website_4",
"image": "images_jpg/yolo.jpg", "image": "images_jpg/yolo.jpg",
"image_pos": "center" "image_pos": "center"
},
{
"id": "selfhost_1",
"image": "images_jpg/gitea.jpg",
"image_pos": "left"
} }
] ]
} }
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 460 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 KiB

+26
View File
@@ -95,6 +95,32 @@
} }
] ]
}, },
{
"id": "selfhosting",
"title": "Self-Hosting",
"description": "Selbst gehostete Dienste, die in Docker-Containern auf meinem eigenen Debian 13-Server laufen.",
"tags": [
"Linux",
"Docker Compose",
"Gitea",
"SQLite"
],
"github": "https://git.marvinkrausser.com",
"blocks": [
{
"heading": "Gitea",
"text": "Die --link-- dient mir als privater Git-Server für persönliche Repositories. Sie läuft als Docker-Container, der nur über den Caddy Reverse Proxy erreichbar ist, welcher HTTPS mit Let's-Encrypt-Zertifikaten bereitstellt. Der Git-Zugriff per SSH läuft über einen separaten Port und funktioniert ausschließlich mit SSH-Keys. Alle Daten, einschließlich der Repositories und der SQLite-Datenbank, liegen in einem einzigen Ordner auf dem Host, sodass ein Backup lediglich aus dem Archivieren dieses Ordners besteht.",
"image": "selfhost_1",
"links": [
{
"id": "gitea",
"link": "https://git.marvinkrausser.com",
"desc": "Gitea-Instanz ↗"
}
]
}
]
},
{ {
"id": "pixelcnn", "id": "pixelcnn",
"title": "PixelCNN Bildgeneration", "title": "PixelCNN Bildgeneration",
+26
View File
@@ -95,6 +95,32 @@
} }
] ]
}, },
{
"id": "selfhosting",
"title": "Self-Hosting",
"description": "Self-hosted services running in Docker containers on my own Debian 13 server.",
"tags": [
"Linux",
"Docker Compose",
"Gitea",
"SQLite"
],
"github": "https://git.marvinkrausser.com",
"blocks": [
{
"heading": "Gitea",
"text": "The --link-- serves as my private Git server for personal repositories. It runs as a Docker container that is only reachable through the Caddy reverse proxy, which provides HTTPS with Let's Encrypt certificates. Git access via SSH uses a separate port and works exclusively with SSH keys. All data, including repositories and the SQLite database, is stored in a single folder on the host, making backups as simple as archiving that folder.",
"image": "selfhost_1",
"links": [
{
"id": "gitea",
"link": "https://git.marvinkrausser.com",
"desc": "Gitea instance ↗"
}
]
}
]
},
{ {
"id": "pixelcnn", "id": "pixelcnn",
"title": "PixelCNN Generator", "title": "PixelCNN Generator",
+3 -1
View File
@@ -16,7 +16,9 @@ export function renderProjects(container, navbar, data, imageConfig) {
blocks.appendChild(createBlock(block, i, imageConfig)); blocks.appendChild(createBlock(block, i, imageConfig));
}); });
section.appendChild(createGithubLink(item.github, data.github_desc)); if (item.github) {
section.appendChild(createGithubLink(item.github, data.github_desc));
}
}); });
} }