https://github.com/samrocketman/rustenv
https://github.com/samrocketman/rustenv
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/samrocketman/rustenv
- Owner: samrocketman
- Created: 2024-12-15T03:22:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-15T07:11:30.000Z (over 1 year ago)
- Last Synced: 2025-08-12T02:33:17.304Z (11 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Dev Environment
A simple rust development environment for my Desktop Linux machines.
> **WARNING:** this environment gets set up with my personal dotfiles including
> git author settings.
# Building
To build the initial docker image run the following command.
docker build -t rust .
Will pull in the latest available version of Rust.
# Installation
Add to `.bashrc` file the following function.
```bash
# rust environment provided by my rustenv project
function rustenv() {
docker run -it --rm -v "$PWD":"$PWD" -w "$PWD" rust
}
```
# Usage
Start this from the root of a Git repository containing a Rust project.
rustenv