Skip to content

Commit

Permalink
Merge pull request #70 from MartinSchmidt/devcontainer
Browse files Browse the repository at this point in the history
Added support for devcontainer
  • Loading branch information
JonasPed authored Feb 25, 2023
2 parents 06bde18 + e97baad commit 81ad354
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:0-3.10",

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// installs all requirements in requirements.txt and the components manifests.json
"updateContentCommand": {
"requirements": "pip3 install --user -r requirements.txt",
"component_requirements": "pip3 install --user $(cat custom_components/eloverblik/manifest.json | jq -r '.requirements|join(\" \")')"
}

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
homeassistant==2023.1.3

0 comments on commit 81ad354

Please sign in to comment.