torsten.liermann
torsten.liermann
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
Gracias. Now I was able to create a workspace and can use Goland through the JetBrains Gateway. Thank you for your support with this frustrating process.
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
Just docker compose as seen on the installation pages.
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
I'm only clicking ..
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
I am missing some information from the documentation. When I use the Docker template, I can't create a workspace because a Dockerfile is missing. I assume that this Dockerfile refers to my development environment. But where do I specify where this Dockerfile should be located? Where is the interaction between the Coder server, templates, and workspaces described in detail?
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
Ok
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
No description
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
momento, wrong image.
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
No description
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
What is the Coder plugin in IntelliJ missing that prevents it from enabling the start button when selecting a displayed workspace?
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
And another attempt with two modules and the build log for it. Unfortunately, the result is unchanged. It would be helpful if there were a beginner's guide that explains step by step how to create a workspace for JetBrains Gateway, and that it is linked where the use of JetBrains is mentioned, but assuming an existing workspace. I want to evaluate Coder in the simplest way possible, and for that, I installed Coder on Debian 12, for which there is also a guide. So, Docker, Kubernetes, or Cloud providers are not involved yet. For me, the "scratch" template seemed like the only sensible starting point, and I just added the JetBrains Gateway as a module in the main.tf file, as described earlier. What you're saying is probably all correct, but I don't want to evaluate the documentation and fill in things here and there—I want to see a simple, working start.
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
Following the instructions in main.tf, I adjusted the template, clicked on "build," and then on "promote." However, the button to start the IDE is still disabled.
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
I created the simplest possible template. The displayed main.tf looks like this: terraform { required_providers { coder = { source = "coder/coder" } } } data "coder_provisioner" "me" {} data "coder_workspace" "me" {} resource "coder_agent" "main" { arch = data.coder_provisioner.me.arch os = data.coder_provisioner.me.os metadata { display_name = "CPU Usage" key = "0_cpu_usage" script = "coder stat cpu" interval = 10 timeout = 1 } metadata { display_name = "RAM Usage" key = "1_ram_usage" script = "coder stat mem" interval = 10 timeout = 1 } } Use this to set environment variables in your workspace details: https://registry.terraform.io/providers/coder/coder/latest/docs/resources/env resource "coder_env" "welcome_message" { agent_id = coder_agent.main.id name = "WELCOME_MESSAGE" value = "Welcome to your Coder workspace!" } Adds code-server See all available modules at https://registry.coder.com module "code-server" { source = "registry.coder.com/modules/code-server/coder" version = "1.0.2" agent_id = coder_agent.main.id } Runs a script at workspace start/stop or on a cron schedule details: https://registry.terraform.io/providers/coder/coder/latest/docs/resources/script resource "coder_script" "startup_script" { agent_id = coder_agent.main.id display_name = "Startup Script" script = <<-EOF #!/bin/sh set -e # Run programs at workspace startup EOF run_on_start = true start_blocks_login = true }
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
No description
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
Something must already be missing when creating the workspace. In the Coder documentation, the IntelliJ logo is shown on the workspace. If there is something special about this, a corresponding note is missing in the documentation.
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
no "intellijdocker", the name is "intellijcoder"
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
No description
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
Are there perhaps specific IntelliJ templates for Coder that are not included in the standard installation? In any case, I didn't see anything right away on how to create an IntelliJ-compatible workspace.
54 replies
CCoder.com
Created by torsten.liermann on 9/29/2024 in #help
Intellij does not accept workspace
54 replies