Questions tagged [gitpod]

Gitpod launches ready-to-code dev environments from any GitHub page.

94 questions
1
vote
0 answers

Install FTC SDK in Gitpod/VS Code

Some background: FTC (First Tech Challenge) is a competitive robotics league that uses Android-based software to make a robot function. In my organization, a majority of programmers come from our school and thus, they often find themselves…
Vincent Yang
  • 21
  • 1
  • 3
1
vote
1 answer

How to specify default extensions while running gitpods' openvscode-server

Using https://github.com/gitpod-io/openvscode-server is there a way to set default VSCode extensions using their Docker command? (docker run -it --init -p 3000:3000 -v "$(pwd):/home/workspace:cached" gitpod/openvscode-server)
brianc
  • 1,547
  • 3
  • 16
  • 30
1
vote
2 answers

Getting 401 error in postman using NextJS in Gitpod

Thanks for looking at my issue. I am learning NextJS, and using Gitpod to test my exercise project. The code I wrote is just a simple API route which works when you type API route in the browser (it returns DATA in JSON as expected). However when…
Ali
  • 31
  • 4
1
vote
1 answer

How to forward ports from GitPod-container to local machine when using JetBrains Gateway?

I use GitPod and JetBrains Gateway to develop my application. I run an application in a docker container inside GitPod-container. The container with application expose ports to handle HTTP requests. Is it possible to forward this port to port in my…
peneksglazami
  • 52
  • 1
  • 7
1
vote
4 answers

Gitpod cannot resolve workspace image: hostname required on workspace start

I've gitpod selfhosted in EKS. When I try to start a new workspace I have this error: Request createWorkspace failed with message: 13 INTERNAL: cannot resolve workspace image: hostname required Unknown Error: { "code": -32603 } I haven't found any…
Daniele
  • 538
  • 1
  • 5
  • 17
1
vote
1 answer

Why does Python imaplib return Errno 111: Connection refused when I try to instantiate the IMAP4() object in GitPod?

I am trying to use the Python imaplib library in GitPod. Following the documentation, I imported imaplib and instantiated the IMAP4 object with the following line of code: M = imaplib.IMAP4() This returns the following message: Traceback (most…
hmltn
  • 224
  • 3
  • 14
1
vote
0 answers

docker inside gitpod, to expose ports

from the terminal in a brand new repo (without gitpod.yaml file) docker run -it -d -p 5000:5000 mcr.microsoft.com/dotnet/sdk:5.0 docker exec -it dc84383888d9904d1a4581309a9284670cbcd589dc7d48239e31c5bebc60743b bash dotnet new webapi -o TodoApi…
pinale
  • 2,060
  • 6
  • 38
  • 72
1
vote
0 answers

Install Heroku cli in Gitpod to run on startup

I am trying to set up my workspace so the Heroku cli automatically installs on startup. I found directions online but nothing is working and I still have to manually install it every time. This is what I…
Ryan Thomas
  • 488
  • 4
  • 14
1
vote
0 answers

How is the LSP implemented in web editors?

I've been studying the Language Server Protocol recently. Correct me if I'm wrong - from what I understand, the language server seems to be an actual server running on the user's machine in a separate process from the code editor (or IDE), that…
Eldrax
  • 499
  • 4
  • 12
1
vote
1 answer

"Gitpod" Downgrade default PHP v7.4.3 to 7.1.3 or 7.2

The error I'm facing is on Gitpod with PHP version, so the question is, how can I delete PHP completely from the workspace or replace it? Basically, I want to downgrade it. I want to replace PHP with an older version. Unfortunately, I’m not able to…
Pranav
  • 31
  • 6
1
vote
1 answer

Looking for cloud based ide/ides where i can setup apache-superset for developement

I am looking to play with apache-superset on a cloud-based ide. I have it on my local. I tried unsuccessfully to set it up on gitpod. I wanted suggestions on where can I set it up, opensource preferably not necessarily. I believe cloud9 is 1 such…
1
vote
1 answer

why "meteor npm install" is not working on gitpod workspace?

I am new to gitpod.io, I am trying to open a meteor project on gitpod.io and when I type "meteor npm install", it's showing "bash: meteor: command not found", however, if I try "npm install" it's working fine. Please help me with the issue.
Sai Deepesh
  • 11
  • 1
  • 2
1
vote
1 answer

How do I connect to the c# web api out of my blazor (c#) code, both running on gitpod?

I'm currently working on a PoC (Proof of concept) application with Blazor in the front-end and a c# web api in the back-end for the data access. I'm getting the ERR_CONNECTION_REFUSED everytime I want to access the api. I do kind of have a weird…
1
vote
1 answer

Correct JDBC Connection URL for a PostgreSQL DB in a Docker Container

I am using Gitpod cloud IDE which uses Docker images to provide a nice linux environment with VSCode IDE. https://gitpod.io It is possible to use a Docker file in Gitpod to install additional software in the environment. So by following Gitpod docs…
dahamv
  • 31
  • 1
  • 1
  • 8
1
vote
1 answer

Can I load additional libraries in Gitpod without creating my own Docker image?

I have recently tried out Gitpod, which seems to be a quite cool tool. For testing purposes, I have opened some C++ GitHub repository of mine that uses Boost (among other libraries). Unfortunately, Boost does not seem to be installed in the Docker…
andreee
  • 4,459
  • 22
  • 42