From 827778701978d59a8ec1c9598f188ba0079a8e87 Mon Sep 17 00:00:00 2001 From: Anton Kosyakov Date: Wed, 3 Apr 2019 09:33:40 +0000 Subject: [PATCH 1/2] gitpodify Signed-off-by: Anton Kosyakov --- .gitpod.yml | 9 +++++++++ .theia/launch.json | 6 ++++++ readme.md | 20 +------------------- 3 files changed, 16 insertions(+), 19 deletions(-) create mode 100644 .gitpod.yml create mode 100644 .theia/launch.json diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..d09d3e1 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,9 @@ +ports: + - port: 3000 + onOpen: open-preview +tasks: + - init: yarn + command: yarn dev +github: + prebuilds: + pullRequestsFromForks: true diff --git a/.theia/launch.json b/.theia/launch.json new file mode 100644 index 0000000..a2ea02c --- /dev/null +++ b/.theia/launch.json @@ -0,0 +1,6 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + "version": "0.2.0", + "configurations": [] +} diff --git a/readme.md b/readme.md index 6d7d20d..d2599ce 100644 --- a/readme.md +++ b/readme.md @@ -11,26 +11,8 @@ - [Deployment](#deployment) ### Installation -Clone repo: -```sh -git clone https://github.com/ooade/NextSimpleStarter.git -cd NextSimpleStarter -``` - -Make it your own: -```sh -rm -rf .git && git init && yarn init -``` -> :information_source: This re-initializes the repo and sets up your project. -Install the dependencies: -```sh -yarn install -``` -or -```sh -npm install -``` +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/gitpod-io/NextSimpleStarter) ### Development Workflow Start a live-reload development server: From 9bbf893db7288869eb1b71fb44c581894ece6429 Mon Sep 17 00:00:00 2001 From: Golpoton Date: Sat, 1 Feb 2020 20:32:38 +0000 Subject: [PATCH 2/2] Add gitpod config this commit adds support for Gitpod.io, a free automated dev environment that makes contributing and generally working on GitHub projects much easier. It allows anyone to start a ready-to-code dev environment for any branch, issue and pull request with a single click. --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index d09d3e1..0ffbff4 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,6 @@ ports: - port: 3000 - onOpen: open-preview + onOpen: notify tasks: - init: yarn command: yarn dev