From 0f3cf3b4c3730447fed2ae472348ec5420cb115d Mon Sep 17 00:00:00 2001 From: Mayank Chhabra Date: Mon, 26 Sep 2022 00:24:02 +0700 Subject: [PATCH] Init --- .gitignore | 2 ++ README.md | 3 +++ hello-world/docker-compose.yml | 13 +++++++++++++ hello-world/umbrel-app.yml | 30 ++++++++++++++++++++++++++++++ umbrel-repo.yml | 2 ++ 5 files changed, 50 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 hello-world/docker-compose.yml create mode 100644 hello-world/umbrel-app.yml create mode 100644 umbrel-repo.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d35701f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +*.pem \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d592602 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +### Todo + +Add step-by-step guide on using this template repository to start your own community app store. \ No newline at end of file diff --git a/hello-world/docker-compose.yml b/hello-world/docker-compose.yml new file mode 100644 index 0000000..3387e69 --- /dev/null +++ b/hello-world/docker-compose.yml @@ -0,0 +1,13 @@ +version: "3.7" + +services: + + app_proxy: + environment: + APP_HOST: hello_world_server_1 + APP_PORT: 3000 + + server: + image: mayankchhabra/sdx:latest + user: "1000:1000" + init: true \ No newline at end of file diff --git a/hello-world/umbrel-app.yml b/hello-world/umbrel-app.yml new file mode 100644 index 0000000..5e166a8 --- /dev/null +++ b/hello-world/umbrel-app.yml @@ -0,0 +1,30 @@ +manifestVersion: 1 +id: hello-world +name: Hello World +tagline: Replace this tagline with your app's tagline +icon: https://static.getumbrel/hello-world/icon.svg +category: Development +version: "1.0.0" +port: 4000 +description: >- + Add your app's description here. + + + You can also add newlines! + +developer: Umbrel +website: https://umbrel.com +submitter: Umbrel +submission: https://github.com/getumbrel/umbrel-hello-world-app +repo: https://github.com/getumbrel/umbrel-hello-world-app +support: https://github.com/getumbrel/umbrel-hello-world-app/issues +gallery: + - https://static.getumbrel/hello-world/1.jpg + - https://static.getumbrel/hello-world/2.jpg + - https://static.getumbrel/hello-world/3.jpg +releaseNotes: >- + Add what's new in the latest version of your app here. +dependencies: [] +path: "" +defaultUsername: "" +defaultPassword: "" \ No newline at end of file diff --git a/umbrel-repo.yml b/umbrel-repo.yml new file mode 100644 index 0000000..869d70c --- /dev/null +++ b/umbrel-repo.yml @@ -0,0 +1,2 @@ +id: "hello-world" # Choose the ID for your app store. This should contain only alphabets ("a to z") and dashes ("-"). +name: "Hello World" # Choose the name of your app store. It will show up in the UI as " App Store". \ No newline at end of file