From 2553ea5054d08f0a86bafea5002e4823036a0972 Mon Sep 17 00:00:00 2001 From: Compey Date: Mon, 13 Jun 2022 20:35:59 +0530 Subject: [PATCH] Create .gitpod.yml --- .gitpod.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..7413148 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +image: + file: .gitpod.Dockerfile +ports: +- port: 3000 +tasks: +- init: touch /tmp/.npm-lock && npm install && rm /tmp/.npm-lock + command: npm run watch +- init: sleep 1 && while [ -f /tmp/.npm-lock ]; do sleep 1; done + command: npm run electron:dev:linux + openMode: split-right