From 5ca70d757cf0fb4a05762845d111b3d131fd0b64 Mon Sep 17 00:00:00 2001 From: Szabaa Date: Wed, 11 Feb 2026 21:18:44 +0100 Subject: [PATCH] Update Teszt_txt.txt, app.yaml, and main.py --- Teszt_txt.txt | 3 --- app.yaml | 21 +++++++++++++++++++++ main.py | 2 ++ 3 files changed, 23 insertions(+), 3 deletions(-) delete mode 100644 Teszt_txt.txt create mode 100644 app.yaml create mode 100644 main.py diff --git a/Teszt_txt.txt b/Teszt_txt.txt deleted file mode 100644 index 1cba98b..0000000 --- a/Teszt_txt.txt +++ /dev/null @@ -1,3 +0,0 @@ -Teszt txt. -Új tartalom -Mégújabb valami. \ No newline at end of file diff --git a/app.yaml b/app.yaml new file mode 100644 index 0000000..4c38480 --- /dev/null +++ b/app.yaml @@ -0,0 +1,21 @@ +app: + id: "teszt-python-app" + name: "Test Python App" + description: "Simple test app for launcher" + version: "1.0.0" + +runtime: + type: "executable" + +launch: + type: "python" + entry: "main.py" + +platforms: + windows-x64: + asset: "teszt-python-app-windows.zip" + sha256: null + + linux-x64: + asset: "teszt-python-app-linux.tar.gz" + sha256: null diff --git a/main.py b/main.py new file mode 100644 index 0000000..feb4849 --- /dev/null +++ b/main.py @@ -0,0 +1,2 @@ +print("Hello from launcher test app!") +input("Press Enter to exit...") \ No newline at end of file