Skip to content

Commit

Permalink
commit all
Browse files Browse the repository at this point in the history
  • Loading branch information
kinghat committed Sep 9, 2022
1 parent 9a5ea74 commit be6370b
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ build
temp

# Editor directories and files
.vscode/*
!.vscode/extensions.json
# .vscode/*
# !.vscode/extensions.json
.idea
.DS_Store
*.suo
Expand Down
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Chrome",
"port": 9222,
"request": "attach",
"type": "chrome",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8123",
// "webRoot": "${workspaceFolder}"
"runtimeExecutable": "/var/lib/flatpak/exports/bin/org.chromium.Chromium"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"task.allowAutomaticTasks": "on"
}
30 changes: 30 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "run hass",
"type": "shell",
"command": "sudo -E container",
"problemMatcher": [],
"presentation": {
"panel": "shared",
"group": "test"
}
},
{
"label": "pnpm watch",
"type": "shell",
"command": "pnpm",
"args": ["watch"],
"problemMatcher": [],
"presentation": {
"panel": "shared",
"group": "test"
}
},
{
"label": "start dev",
"dependsOn": ["run hass", "pnpm watch"]
}
]
}

0 comments on commit be6370b

Please sign in to comment.