From 5ed60768f41158becdfb78e9fe0a4da7d16a3dac Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Wed, 7 Oct 2020 16:10:32 +0000 Subject: 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.yml | 5 +++++ README.md | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..572ee31 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +image: gitpod/workspace-full + +tasks: + - init: yarn install && yarn run build + command: yarn run start diff --git a/README.md b/README.md index cfd95fc..024c634 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/Alee14/chine-projet) + # chine-project ## Build Setup -- cgit v1.2.3 From dd8a5fd88ca1ff675e34952b6522d395e2efb552 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Wed, 7 Oct 2020 16:13:58 +0000 Subject: Added stuff --- .gitpod.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitpod.yml b/.gitpod.yml index 572ee31..a1f91f8 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -3,3 +3,8 @@ image: gitpod/workspace-full tasks: - init: yarn install && yarn run build command: yarn run start + +vscode: + extensions: + - abusaidm.html-snippets@0.2.1:HrYIjYqOIABbxFB9g9kqXQ== + - octref.vetur@0.28.0:bW1RGNnmWYQO43JdJgK34w== \ No newline at end of file -- cgit v1.2.3