Boilerplate for core library and CLI binary.

This commit is contained in:
alexiondev
2026-04-27 23:45:02 +00:00
parent 4f4035b391
commit 5bd5839ecf
10 changed files with 78 additions and 0 deletions

4
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM mcr.microsoft.com/devcontainers/rust:1-1-bookworm
# Install 'just' as root during the build process
RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin

View File

@@ -0,0 +1,17 @@
{
"name": "Gingko Development",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"vadimcn.vscode-lldb",
"mutuhun.just"
]
}
},
"remoteUser": "vscode"
}