Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Gitpod Support #389

Closed
wants to merge 14 commits into from
20 changes: 20 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM gitpod/workspace-full-vnc:latest

# Install custom tools, runtime, etc.
RUN sudo apt-get update \
# window manager
&& sudo apt-get install -y jwm \
# electron
&& sudo apt-get install -y libgtk-3-0 libnss3 libasound2 \
# native-keymap
&& sudo apt-get install -y libx11-dev libxkbfile-dev
RUN sudo apt-get update \
&& sudo apt-get install -y \
libasound2-dev \
libgtk-3-dev \
libnss3-dev
# Apply user-specific settings
RUN bash -c ". .nvm/nvm.sh \
&& nvm install 12 \
&& nvm use 12 \
&& npm install -g yarn"
5 changes: 5 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
image:
file: .gitpod.Dockerfile
tasks:
- init: npm install
command: npm start
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ Before you start, we highly recommend you check the Google Assistant Unofficial

## How to Build?

### Using Gitpod
-----------------
Click the button below and click "Open Browser" or "Open Preview" in the bottom right to view the app. To put in the auth file, upload it as a project file for it to show up in the Gitpod file browser.


[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/Melvin-Abraham/Google-Assistant-Unofficial-Desktop-Client)

### Using `npm`
---------------

Expand Down