From 446764339985f81eeba571b80d689ab94731be60 Mon Sep 17 00:00:00 2001 From: "Atthaboon Sanurt (P'Art)" Date: Sun, 9 Aug 2020 10:59:23 +0000 Subject: [PATCH 1/2] Fully automate dev setup with Gitpod This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitHub and GitLab that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click. --- .gitpod.Dockerfile | 7 +++++++ .gitpod.yml | 5 +++++ README.md | 2 ++ 3 files changed, 14 insertions(+) create mode 100644 .gitpod.Dockerfile create mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..f8e49f2 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,7 @@ +FROM gitpod/workspace-full + +# Install custom tools, runtimes, etc. +# For example "bastet", a command-line tetris clone: +# RUN brew install bastet +# +# More information: https://www.gitpod.io/docs/config-docker/ diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..09b3fcc --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +image: + file: .gitpod.Dockerfile + +tasks: + - init: npm install diff --git a/README.md b/README.md index 1d54e8f..b403e99 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/qahive/generator-robotframework-puppeteer) + # generator-robotframework-puppeteer ## Local setup From e36acd851ced16978e1d99f1a7b15bfb337b76bd Mon Sep 17 00:00:00 2001 From: "Atthaboon Sanurt (P'Art)" Date: Sun, 9 Aug 2020 11:11:43 +0000 Subject: [PATCH 2/2] force install current package --- .gitpod.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitpod.yml b/.gitpod.yml index 09b3fcc..e00d85f 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -3,3 +3,4 @@ image: tasks: - init: npm install + - init: npm install -g yo