The website for RustConf
This site is made with Ruby and the static site framework, Middleman. You'll need Ruby and Bundler nstalled to build and run the site locally.
To get the site running for local development:
- Fork and clone this repository
cd rustconf
bundle install
middleman
- Visit
http://192.168.0.7:4567/
in your browser
This site is hosted via GitHub pages, and is built with middleman.
For deployment, we used this off the shelf tool: https://github.com/edgecase/middleman-gh-pages
We also added a custom rake task, rake deploy
, which builds and publishes together. You probably want bundle exec rake deploy
.
If your deploy fails with this message:
error: src refspec gh-pages does not match any.
error: failed to push some refs to '[email protected]:tildeio/rustconf.git'
rerun your deploy with a custom build directory with this command:
bundle exec rake publish BUILD_DIR=/tmp/anything