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)