From 6b0fc48c86b325426f8d438a599499d98f6c8261 Mon Sep 17 00:00:00 2001 From: Apoorv Vyavahare <82765893+vital987@users.noreply.github.com> Date: Fri, 11 Jun 2021 00:36:10 +0530 Subject: [PATCH] Create app.json --- app.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..ff71a1c --- /dev/null +++ b/app.json @@ -0,0 +1,28 @@ +{ + "name": "Vubuntu", + "description": "Fully fledged Ubuntu NoVNC, refer readme for more info.", + "repository": "https://github.com/apoorvvyavahare/vubuntu.git", + "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Ubuntu_logoib.svg/240px-Ubuntu_logoib.svg.png", + "keywords": ["docker","ubuntu", "vscode", "novnc", "firefox", "brave", "fluxbox", "linux", "remote", "ssh", "vnc", "vubuntu"], + "stack": "container", + "env": { + "VNC_TITLE" : { + "description": "VNC Session Title, w/o spaces.", + "value" : "Ubuntu_Desktop", + "required" : true + } , + "VNC_PASS": { + "description": "VNC server password w/o spaces.", + "required" : true + }, + "VNC_RESOLUTION" : { + "description": "VNC Server Resolution in WxH, 720p is preferrable.", + "value" : "1280x720", + "required" : true + } , + "NGROK_TOKEN" : { + "description": "Use private ngrok token to prevent tunnel termination.", + "required" : false + } + } + }