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