the home of the rust website
Note
There are currently no reviewers for the translations available. If you have a suggestion to improve the translations, you may still open an issue for future reference. However, it likely won't be acted upon for the time being.
Execute cargo run
. The web will be compiled into the build
directory, from which you can serve it using a web server of your choice. For example, with Python it could be:
$ cargo run
$ python3 -m http.server -d build
You can use cargo watch -x run
to automatically rebuild the web once you make changes to it.
- If you would like to edit styles, you should edit
src/styles/app.scss
. - If you would like to edit page content, you should edit the
hbs
files intemplates
.
Please read our CONTRIBUTING.md
before submitting a PR!
www.rust-lang.org is currently hosted on GitHub Pages. The master
branch is
automatically deployed to www.rust-lang.org after
each push.