Skip to content

Commit

Permalink
Merge pull request #5 from ferdinandkeller/dev-tools
Browse files Browse the repository at this point in the history
Added Development Tools
  • Loading branch information
Snowiiii authored Aug 1, 2024
2 parents b6d1dd7 + e42eae0 commit 4ee1c61
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "Pumpkin",
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"ghcr.io/devcontainers/features/rust:1": {}
},
"mounts": [
// mount SSH config & public keys from host to enable SSH-based Git remotes
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/vscode/.ssh,readonly,type=bind"
],
"forwardPorts": [
25565
],
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"Swellaby.rust-pack"
]
}
}
}
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"target/": true,
"Cargo.lock": true
}
}

0 comments on commit 4ee1c61

Please sign in to comment.