commit 52067f85e5eaf87e0b2c7b4cbd04904581862325 Author: LuiiCode Date: Sun May 24 10:02:52 2026 +0200 Initial commit: README, hello.py, .gitignore - README.md mit Projektbeschreibung - hello.py: einfaches Python-Greet-Script mit Typ-Annotation - .gitignore für Python und IDE-Dateien 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")) +