From fc374e91b923101a0e660d44b40221b152ad1737 Mon Sep 17 00:00:00 2001 From: 17lwinn <50519725+17lwinn@users.noreply.github.com> Date: Sun, 26 Apr 2020 18:29:53 +0100 Subject: [PATCH] Gitpod integration (#5) * Create .gitpod.yml * Create .gitpod.Dockerfile * Update .gitpod.yml * Update .gitpod.yml * Update .gitpod.yml * Update README.md --- .gitpod.Dockerfile | 6 ++++++ .gitpod.yml | 11 +++++++++++ README.md | 8 +++++++- 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .gitpod.Dockerfile create mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..3e7cde3 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,6 @@ +FROM gitpod/workspace-full + +## Avoid using 'root', as it's bad for your dev environments! +USER gitpod + +RUN npm install pnpm diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..11a809c --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,11 @@ +image: + file: .gitpod.Dockerfile + +# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/ +ports: + - port: 8000 + onOpen: notify + +tasks: + - init: npm install # runs during prebuild + command: npm start diff --git a/README.md b/README.md index 1ea6200..b2a099f 100644 --- a/README.md +++ b/README.md @@ -26,4 +26,10 @@ Format for entries: `protocol://domain:port/` Run your own instance: -Run `wget -O proxychief.zip https://github.com/youngchief-btw/ProxyChief/archive/master.zip` (I recommend doing `git clone https://github.com/youngchief-btw/ProxyChief.git` instead to pull in the latest changes) \ No newline at end of file +Run `wget -O proxychief.zip https://github.com/youngchief-btw/ProxyChief/archive/master.zip` (I recommend doing `git clone https://github.com/youngchief-btw/ProxyChief.git` instead to pull in the latest changes) + +--- + +Or run on gitpod: + +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/youngchief-btw/Proxychief)