Gitpod launches ready-to-code dev environments from any GitHub page.
Questions tagged [gitpod]
94 questions
0
votes
1 answer
Discord OAuth2 login not working on Gitpod port
I'm sorry for any lack of supporting code, I'm not sure what is needed to show for this question.
On my Django project I set up OAuth2 authentication for Discord and it has been working fine up until today, I'm not sure if it is because of the…

Ryan Thomas
- 488
- 4
- 14
0
votes
1 answer
How do we fix the inability to run test cases in Gitpod?
I am unable to test my code in Gitpod.
The flask icon in the bottom left is not appearing; and, I'm unable to run test cases.
How may I correct this?
I tried disabling any possible extensions to be able to run test cases...but nothing seems to…

Neil
- 21
- 4
0
votes
1 answer
Invalid host header using gitpod
running a ionic angular code using gitpod.io is shows compile successfully message in terminal but the browser shows Invalid host header, error how to resolve this?
I'm trying to resolve this error any one can help with correct answer

RANJITH
- 1
- 2
0
votes
1 answer
Kafka Broker on Gitpod
I've setup a very basic kafka broker on gitpod.
I would now like to access it from a python notebook using kafka-python
producer = KafkaProducer(bootstrap_servers=['localhost:9092'])
I must replace localhost with the IP of my Gitpod workspace but…

Mehdi LAMRANI
- 11,289
- 14
- 88
- 130
0
votes
2 answers
Can't find a new Jupyter kernel on gitpod
I'm trying to install a new mysql kernel on Gitpod: https://pypi.org/project/mysql-kernel/
But visual studio code doesn't find the kernel
After installing the new jupyter kernel on gitpod.
Everything seems to be ok.
But visual studio code doesn't…

malizia fabio
- 23
- 1
- 6
0
votes
1 answer
Nifi w/ Docker on Gitpod : No UI Access
I'm running a basic docker compose for nifi
(spinning on a Gitpod workspace)
And I cant seem to be able to acces the NiFi UI
version: '3'
services:
nifi:
image: apache/nifi:latest
container_name: nifi
restart: unless-stopped
…

Mehdi LAMRANI
- 11,289
- 14
- 88
- 130
0
votes
1 answer
the env.py file keeps dispearing from GitPod workspace
I cant commit the changes when I recreate the file, as I get the follwing message:
"On branch main
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean"
Everything else can be commited...
Once I close the workspace and…

Anti Deus
- 1
- 1
0
votes
2 answers
Getting 404 when trying to authenticate sanity in gitpod
I am trying to use sanity in Gitpod.
When trying to use google authentication, it will be forwarded to http://localhost:4321/, but Gitpod doesn't recognise http://localhost:4321/. How can I solve this issue?
I think this issue related to port…

Ali
- 31
- 4
0
votes
1 answer
`pyenv install` on `.gitpod.yml` has no effect
I'm trying to configure my Gitpod workspace to install a new Python version like this:
image: gitpod/workspace-python-3.10:2023-03-06-18-43-51
tasks:
- name: install-mamba
init: |
pyenv install mambaforge-22.9.0-2
pyenv uninstall -f…

astrojuanlu
- 6,744
- 8
- 45
- 105
0
votes
0 answers
Sanity in gitpod
I want to use Sanity in Gitpod. But, after installing Sanity Cli when tryying to authenticate using google, or github, it will be redirected to 404 page.
Any ideas? Thanks
This issue happens both using githubnd google login.

Ali
- 31
- 4
0
votes
1 answer
Running Selenium-java automation within gitpod.io
New to SO & test automation & selenium. I got introduced to gitpod while attempting https://www.lambdatest.com/certifications/.
I'm stuck trying to run the below simple code snippet in side Gitpod.
package project.maven.selenium;
import…

Dcode78
- 1
- 1
0
votes
0 answers
Running Selenium-java automation inside Gitpod
New to the platform & test automation & selenium. I got introduced to Gitpod while attempting https://www.lambdatest.com/certifications/.
for starters I'm stuck trying to run the below simple code snippet in side Gitpod
package…
user21226172
0
votes
0 answers
Not getting results from Flower API
I've been experimenting with escriptorium, which uses Flower and Celery. As part of that I'm attempting to write some scripting to query Flower workers using its API. When I view my Flower dashboard I can see 4 workers listed.
But when I use the…

KineticSquid
- 316
- 3
- 13
0
votes
1 answer
MyPy usingo other Pyhton version as in venv? (Positional-only parameters are only supported in Python 3.8 and greater)
MyPy thinks it has to check for Python <3.8 when instead it should use 3.10
As you can see, Python3.10 is active
(myvenv) gitpod /workspace/myfolder (mybranch) $ python --version
Python 3.10.7
however mypy think its <3.8?
(myvenv) gitpod…

tturbo
- 680
- 5
- 16
0
votes
1 answer
Additional Repositories property for Gitpod in gitpod.yml file not working
I am setting up a workspace in gitpod where I need to checkout additional repository like multirepo example. I have added this property in my .gitpod.yml file however when setting up container image it is not checking out the additional repo. Can…

somename
- 978
- 11
- 30