Merge pull request #1399 from eroullit/codespaces
Codespaces ❤️ Rustlings
This commit is contained in:
commit
d5b647d5ab
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
|
||||||
|
"waitFor": "onCreateCommand",
|
||||||
|
"onCreateCommand": ".devcontainer/setup.sh",
|
||||||
|
"updateContentCommand": "cargo build",
|
||||||
|
"postCreateCommand": "",
|
||||||
|
"postAttachCommand": {
|
||||||
|
"server": "rustlings watch"
|
||||||
|
},
|
||||||
|
"customizations": {
|
||||||
|
"vscode": {
|
||||||
|
"extensions": [
|
||||||
|
"rust-lang.rust-analyzer"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||||
|
|
||||||
|
# Update current shell environment variables after install to find rustup
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
rustup install stable
|
||||||
|
bash install.sh
|
|
@ -66,6 +66,8 @@ If you get a permission denied message, you might have to exclude the directory
|
||||||
|
|
||||||
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/rust-lang/rustlings)
|
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/rust-lang/rustlings)
|
||||||
|
|
||||||
|
[![Open Rustlings On Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new/?repo=rust-lang%2Frustlings&ref=main)
|
||||||
|
|
||||||
## Manually
|
## Manually
|
||||||
|
|
||||||
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
|
Basically: Clone the repository at the latest tag, run `cargo install --path .`.
|
||||||
|
|
Loading…
Reference in New Issue