Questions tagged [gitpod]

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

94 questions
0
votes
1 answer

GitPod AWS SSO No access

I am following the instructions to get AWS SSO working: https://www.gitpod.io/guides/integrate-aws-cli-ecr I'm not sure about what the AWS_ROLE_NAME gitpod variable should be. I feel like I'm getting this wrong, because signing in with: aws sso…
0
votes
0 answers

How to install kots in Azure cloud shell

I'm a newcomer to Azure.I need to install kots to execute some commands(I want to install gitpods(AKS)). But I don't have root permission (Azure doesn't seem to provide this permission). I tried this method in Azure Cloud shell, but I didn't know…
Today
  • 1
0
votes
0 answers

gitpod - open a project in a subfolder of a github repo

i've a repo with multiple react projects arranged in different subfolders is it possible to open a specific project usign the link button? somethig like this: //pseudocode - this is the pat of my…
pinale
  • 2,060
  • 6
  • 38
  • 72
0
votes
1 answer

How to efficiently set up development conda env in Gitpod?

I would like create a Gitpod workspace for a GitHub project of ours so that we (4 ppl) can develop in the cloud. Our project is a conda package and locally we develop it in a dedicated development environment, having a recipe for it in a…
maciek
  • 1,807
  • 2
  • 18
  • 30
0
votes
0 answers

React Front-end connecting to Java Backend on Gitpod HTTPS

I have a project which I have dockerised here: https://github.com/redis-projects/redis-movies/tree/gitpod I am in the process of trying to get it to work correctly on GitPod, however I am having issues with the frontend react app hitting the backend…
eisenhorn
  • 301
  • 3
  • 10
0
votes
0 answers

gitpod VScode environment terminal not working

I started my gitpod vscode environment as usual today but for some weird reason the terminal is not working meaning its not showing anything. if I start a new terminal than also its showing nothing instead of its name like bash.cursor not blinking,…
nish
  • 1
  • 3
0
votes
1 answer

why 'port 8081 is not found' error is coming?

Why this error is coming when I am trying to run https://github.com/sbibek086/react-blog-app ? Please anybody, can you guide me through this?
0
votes
0 answers

How do I install .net and mysql in gitpod?

If I install .net and mysql one by one I get it up and running by using FROM gitpod/workspace-mysql and then trying FROM gitpod/workspace-dotnet But if both is needed, I guess I need to create a gitpod.Dockerfile. This is where have problems. I…
0
votes
0 answers

Problem with pushing code to heroku through git. Using gitpod

Feel like this is probably the easiest thing in the world to you guys but i cant uploade my django blog to heroku, iv tried everything i can think of, runtime.txt file with different python versions, tried doing it through heroku instead of through…
Erik
  • 1
0
votes
1 answer

Logcat from Appetize on GitPod for Flutter

I try to setup flutter on GitPod. I signed up for a free Appetize.io API key and re-opened the example from https://www.gitpod.io/docs/introduction/languages/dart https://gitpod.io/#https://github.com/gitpod-io/template-flutter The app is displayed…
Alex
  • 32,506
  • 16
  • 106
  • 171
0
votes
0 answers

Gitpod Self-Host failed

Comand $ kubectl kots install gitpod failed Error screenshot link I installed K8S, kubectl and another necessary utilities for Gitpod. But the last step, $ kubectl kots install gitpod filed with the error (attached image) Please help me out if…
0
votes
1 answer

Receiving errors when pushing container image to aws lambda

I am following this tutorial for how to create a container image and push it to AWS lamdba. https://www.youtube.com/watch?v=DsQbBVr-GwU I did everything just as done in the tutorial except I changed to python since that is the language my code uses.…
0
votes
1 answer

PostgreSQL and Docker: password authentication failed

I'm using Gitpod to generate a container via Docker (because I'm using Gitpod, I don't have access to Docker command line). My goal is to install Python and PostgreSQL. This is my current Dockerfile: # Base image is one of Python official…
Edgar Derby
  • 2,543
  • 4
  • 29
  • 48
0
votes
0 answers

how to configure thymeleaf for cloud environment such as gitpod

I have done my development setup in Gitpod. I have a application in spring boot with thymeleaf template engine, it works fine on my local pc, but when I try to access it via gitpod server it gives me this error [THYMELEAF][http-nio-8080-exec-5]…
0
votes
1 answer

"-m32" option of gcc is not working in gitpod environment. (Bad system call)

I am trying to execute "hello world" program in gitpod environment in 32bit by using "-m32" option. However, I cannot get a good result "hello world". I can only get "Bad system call". Here is my test.c (hello world program) #include int…