Skip to content

Commit

Permalink
Move .devcontainer to /.devcontainer.json
Browse files Browse the repository at this point in the history
Simplifies the directory structure, and fixes a JetBrains limitation
where relative paths are not supported.

Needs testing before PR.

Signed-off-by: Dom Rodriguez <[email protected]>
  • Loading branch information
shymega committed Oct 28, 2023
1 parent 7facfe9 commit e5e1eb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .devcontainer/devcontainer.json → .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "Open PineBuds Pro - VS Code Development Environment",
"build": {
"dockerfile": "../Dockerfile",
"context": ".."
"build": "Dockerfile",
"context": ".",
"image": "ghcr.io/pine64/openpinebuds:latest-sdk"
},
"extensions": [
"ms-vscode.cmake-tools",
Expand All @@ -13,4 +14,4 @@
],
"userEnvProbe": "loginInteractiveShell",
"remoteUser": "root"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
!.mailmap
!.github
!.devcontainer
!.devcontainer.json

# Backup files
*~
Expand Down

0 comments on commit e5e1eb1

Please sign in to comment.