Problems while setting up development environment

Hi everyone. I’ve encountered a problem while setting up development environment. I’ve been following the steps from official documentation (both manual and docker configuration) and Home Assistant configuration is stuck on onboarding screen and I can’t go any further. I’ve already tried to clean up cookies, rebuild container, reinstalled docker and visual studio code couple of times and none of these things worked. I’ve also checked the logs and I haven’t found anything unusual. I’m stuck on a screen i uploaded. Hope someone can help me

I just tried to install Home Assistant on a TrueNas Scale VM. Exactly the same problem. Glad I am not the only one.

No way to get this version running :frowning:

I have the same issue. I’ve followed the documentation for a WSL2/VSCode/Docker dev environment. Everything spins up as described, but after the analytics portion of onboarding, it sits at the screen in the original post. I’ve found the .storage folder is where the onboarding settings are being saved. I’ve deleted that and rebuilt the container, still with the same issue in the same spot. I must be overlooking a setting or a step.

Any assistance is greatly appreciated.

I was able to get past the issue by altering the file at config/.storage/onboarding
changing

{
  "version": 4,
  "minor_version": 1,
  "key": "onboarding",
  "data": {
    "done": [
      "user",
      "core_config",
      "analytics"
    ]
  }
}

to

{
  "version": 4,
  "minor_version": 1,
  "key": "onboarding",
  "data": {
    "done": [
      "user",
      "core_config",
      "analytics",
      "integration"
    ]
  }
}

It works, thank you so much!