N64FlashcartMenu/.devcontainer/devcontainer.json

24 lines
604 B
JSON
Raw Normal View History

2023-02-27 00:14:51 +01:00
{
"name": "N64FlashcartMenu",
"build": {
"dockerfile": "Dockerfile"
},
2023-02-27 01:48:22 +01:00
"mounts": [
2023-02-28 18:39:39 +01:00
"source=n64flashcartmenu-bashhistory,target=/commandhistory,type=volume"
2023-02-27 01:48:22 +01:00
],
2023-07-02 21:52:58 +02:00
"postCreateCommand": "git submodule update --init && cd ./libdragon && ./build.sh",
2023-02-27 01:48:22 +01:00
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
2023-05-28 23:09:19 +02:00
"ms-vscode.makefile-tools"
],
"settings": {
"git.ignoredRepositories": [
"libdragon"
]
}
2023-02-27 01:48:22 +01:00
}
}
2023-02-27 00:14:51 +01:00
}