základné prostredie

This commit is contained in:
2026-01-10 10:26:31 +01:00
parent acc0cc88a6
commit 71b2a5e3cc
3 changed files with 26 additions and 1 deletions

8
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# Základný oficiálny Rust image
FROM rust:1.92
# Inštalácia doplnkových nástrojov
RUN rustup component add rustfmt clippy
# Vytvorenie pracovného adresára
WORKDIR /workspace

View File

@@ -0,0 +1,17 @@
{
"name": "RustDev",
"build": {
"dockerfile": "Dockerfile"
},
"workspaceFolder": "/workspace",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer"
],
"settings": {
"editor.formatOnSave": true
}
}
}
}

View File

@@ -1 +1 @@
Readme
Základné dev prostredie rust