Questions tagged [jetbrains-space]

Use this tag for questions about JetBrains Space, and more specifically the Space SDK, the Space Automation DSL, Space applications development, and any question pertaining to code that integrates with the Space platform. You may also use this tag for questions related to the IDE integration of Space.

JetBrains Space is a complete Software Development platform. It provides must-have features such as git hosting, CI/CD, issue tracking, documents, package hosting and many more. Learn more about Space on the official website.

8 questions
2
votes
1 answer

Jetbrains Space shellScript variables

I'm trying to use bash variables in a shellScript in jetbrains space automation to no success. My .space.kts is as follows; job("mvn compile"){ container(displayName="mvn", image="maven:3.8.5-eclipse-temurin-17"){ shellScript { …
BigMikeCodes
  • 23
  • 1
  • 5
1
vote
0 answers

Versioning via Git Tag in Jetbrains Space Automation

I am currently trying to solve a versioning problem in my application: I want to use the git tag as a version number inside a JetBrains Space automation script. My .space.kts is based on a template from the official docs and contains the following…
1
vote
1 answer

Go run config gives error permission for Fleet-based dev environment from Space

I am running a Fleet-based dev environment from Space (cool sentence btw). It's a simple Go program. If I open a terminal in Fleet, I can successfully execute go run cm/server/main.go. But when creating a run config, I get a permission denied (os…
Phil
  • 879
  • 2
  • 10
  • 23
1
vote
1 answer

Open web page on click at a button in a JetBrains Space chat message using Kotlin SDK

I have a simple chat bot that renders "on this day" facts based on Wikipedia. As you can see, there's a button on my UI. I want that if the user taps on it, a new browser tab opens with given Wikipedia url. Until now, I only see the possibility to…
Tobonaut
  • 2,245
  • 2
  • 26
  • 39
1
vote
2 answers

JetBrains Space automation script

I try to solve the following issue: job("Docker | deploy") { docker { build { context = "docker" file = "./docker/Dockerfile" labels["vendor"] = "mycompany" args["HTTP_PROXY"] =…
0
votes
0 answers

Providers/tools to support turn based code reviews

jetbrains space introduced a concept that they call "turn based code reviews": https://blog.jetbrains.com/space/2020/04/30/introducing-turn-based-code-reviews-in-space/ I really like it and it makes it much more efficient when you have to keep track…
Chris
  • 13,100
  • 23
  • 79
  • 162
0
votes
0 answers

Is it possible to add more repositories to one dev environment on JetBrains Space?

Is it possible to have more than one repository in one dev environment on JetBrains Space?
0
votes
0 answers

Attach chart.js image to JetBrains Space POST request

I'm struggling to find any resources for creating an issue in JetBrain's Space docs. This is what I'm working with, mostly from their API playground: function createIssue(apiData) { const { url, auth, title, description, assignee, status,…
kanwoody
  • 11
  • 3