Update Teszt_txt.txt, app.yaml, and main.py

This commit is contained in:
Szabaa 2026-02-11 21:18:44 +01:00
parent dc52198609
commit 5ca70d757c
3 changed files with 23 additions and 3 deletions

View File

@ -1,3 +0,0 @@
Teszt txt.
Új tartalom
Mégújabb valami.

21
app.yaml Normal file
View File

@ -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

2
main.py Normal file
View File

@ -0,0 +1,2 @@
print("Hello from launcher test app!")
input("Press Enter to exit...")