Skip to content

Commit

Permalink
Use port 9000 to not conflict with normal instance
Browse files Browse the repository at this point in the history
  • Loading branch information
twhittock committed Mar 30, 2024
1 parent bd2dd75 commit dc2aee1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"image": "mcr.microsoft.com/devcontainers/python:3.12-bookworm",
"postCreateCommand": "scripts/setup",
"forwardPorts": [
8123
9000
],
"portsAttributes": {
"8123": {
"9000": {
"label": "Home Assistant",
"onAutoForward": "notify"
}
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "2.0.0",
"tasks": [
{
"label": "Run Home Assistant on port 8123",
"label": "Run Home Assistant on port 9000",
"type": "shell",
"command": "scripts/develop",
"problemMatcher": []
Expand Down
5 changes: 4 additions & 1 deletion config/configuration.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
default_config:

http:
server_port: 9000

logger:
default: warn
logs:
Expand All @@ -8,4 +11,4 @@ logger:
homeassistant.loader: warn

# If you need to debug uncomment the line below (doc: https://www.home-assistant.io/integrations/debugpy/)
debugpy:
#debugpy:

0 comments on commit dc2aee1

Please sign in to comment.