Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 907 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 907 Bytes

Rust Github Template Website

Rust Github Template Website repository.

Build locally

If you want to build this website locally:

  • clone this repository:

    git clone https://github.com/rust-github/rust-github.github.io
  • go inside the directory:

    cd rust-github.github.io

At this point you can either use docker or not:

Docker

  • run the github-pages container:

    docker run -it --rm -v "$PWD":/usr/src/app -p "4000:4000" starefossen/github-pages
  • Open the link http://localhost:4000 in your web browser

Manually

  • Install ruby
  • Install bundler: $ gem install bundler
  • Install Jekyll and the other dependencies: $ bundle install
  • Run the server locally: $ bundle exec jekyll serve
  • Open the link http://localhost:4000 in your web browser