https://github.com/rust-gcc/rust-gcc.github.io
github pages for the Rust GCC project
https://github.com/rust-gcc/rust-gcc.github.io
compiler gcc gccrs rust
Last synced: about 1 year ago
JSON representation
github pages for the Rust GCC project
- Host: GitHub
- URL: https://github.com/rust-gcc/rust-gcc.github.io
- Owner: Rust-GCC
- Created: 2021-01-08T12:06:45.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-15T10:12:00.000Z (about 1 year ago)
- Last Synced: 2025-04-15T11:24:31.437Z (about 1 year ago)
- Topics: compiler, gcc, gccrs, rust
- Language: CSS
- Homepage: https://rust-gcc.github.io/
- Size: 6.23 MB
- Stars: 10
- Watchers: 6
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust-GCC.github.io
github pages for the Rust GCC project
## Running the website locally
The easiest way is to use the jekyll docker image if you are not familiar with jekyll and bundle.
```shell
docker run --rm -it -e UID=$(id -u) -e GID=$(id -g) -p 4000:4000 -v $(pwd):/srv/jekyll jekyll/builder bash -c 'bundle install && bundle exec jekyll serve'
```
Otherwise you can run locally:
```shell
$ bundle install
$ bundle exec jekyll serve
```