File tree Expand file tree Collapse file tree 7 files changed +40
-12
lines changed
Expand file tree Collapse file tree 7 files changed +40
-12
lines changed Original file line number Diff line number Diff line change 1- // See https://aka.ms/vscode-remote/devcontainer.json for format details.
21{
3- "image" : " ludeeus/container:integration-debian" ,
4- "name" : " Blueprint integration development" ,
5- "context" : " .." ,
6- "appPort" : [
2+ "name" : " custom-components/readme" ,
3+ "image" : " mcr.microsoft.com/vscode/devcontainers/python:0-3.10-bullseye" ,
4+ "remoteUser" : " vscode" ,
5+ "context" : " ." ,
6+ "forwardPorts" : [
77 " 9123:8123"
88 ],
9- "postCreateCommand" : " container install " ,
9+ "postCreateCommand" : " scripts/setup " ,
1010 "extensions" : [
11- " ms-python.python" ,
12- " github.vscode-pull-request-github" ,
13- " ryanluker.vscode-coverage-gutters" ,
14- " ms-python.vscode-pylance"
11+ " ms-python.python"
1512 ],
1613 "settings" : {
1714 "files.eol" : " \n " ,
Original file line number Diff line number Diff line change 1- custom_components /hacs
2- __pycache__
1+ # # Python temp files
2+ __pycache__
3+
4+ # # Home Assistant files
5+ .cloud
6+ .storage
7+ .HA_VERSION
8+ blueprints
9+ deps
10+ home-assistant. *
11+ * .db *
12+
13+ # # Integration files
14+ templates
File renamed without changes.
Original file line number Diff line number Diff line change 1+ black
2+ colorlog
3+ homeassistant
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -e
3+
4+ cd " $( dirname " $0 " ) /.."
5+ hass -c .
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -e
3+
4+ cd " $( dirname " $0 " ) /.."
5+ black .
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -e
4+
5+ cd " $( dirname " $0 " ) /.."
6+ python3 -m pip install -r requirements.txt
You can’t perform that action at this time.
0 commit comments