You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make it easier to modify the solution by adding a devcontainer tool. It allows you to launch a container from vscode to launch homeassistant with a task. Dirigera is already available to test.
Checklist before submitting a pull request
[N/A] Updated base lib and added the required version in the requirements.txt and manifest.json
Checklist for reviewer
Select "Squash and merge" to keep commit timeline clean
Hi @Sorgann, thanks for this PR! I'm always open to contributions that make development easier for the community.
Before we can merge this, there are a few issues that need to be addressed:
Typo in devcontainer.json: "postStawsrtCommand" should be "postStartCommand" — currently this hook won't execute at all.
Python 3.14 in .python-version: Python 3.14 hasn't been released yet (expected October 2026). This should be set to a currently available version, e.g. 3.12 or 3.13.
Scripts missing executable permissions: script/setup and script/bootstrap need chmod +x to be executable.
Could you update the PR with these fixes? Happy to merge once they're resolved.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe your changes
Make it easier to modify the solution by adding a devcontainer tool. It allows you to launch a container from vscode to launch homeassistant with a task. Dirigera is already available to test.
Checklist before submitting a pull request
requirements.txtandmanifest.jsonChecklist for reviewer