From 52067f85e5eaf87e0b2c7b4cbd04904581862325 Mon Sep 17 00:00:00 2001 From: LuiiCode Date: Sun, 24 May 2026 10:02:52 +0200 Subject: [PATCH] Initial commit: README, hello.py, .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - README.md mit Projektbeschreibung - hello.py: einfaches Python-Greet-Script mit Typ-Annotation - .gitignore für Python und IDE-Dateien --- .gitignore | 10 ++++++++++ README.md | 8 ++++++++ hello.py | 12 ++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100755 hello.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..899e8fb --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python +__pycache__/ +*.py[cod] +*.egg-info/ +.venv/ + +# IDE +.vscode/ +.idea/ + diff --git a/README.md b/README.md new file mode 100644 index 0000000..5e9df6d --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# test-repo + +Test-Repository für Hermes Agent — erstellt am 24.05.2026. + +## Zweck + +Dieses Repository dient zum Testen der Gitea-Integration mit Hermes Agent. + diff --git a/hello.py b/hello.py new file mode 100755 index 0000000..7de797c --- /dev/null +++ b/hello.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 +"""Einfaches Test-Script für Gitea CI-Tests.""" + + +def greet(name: str = "Welt") -> str: + return f"Hallo, {name}!" + + +if __name__ == "__main__": + print(greet()) + print(greet("Kevin")) +