Welcome to the DevConf 2.0 Website
You need
- Ruby 3+
- Jekyll (installed from Gems)
- Jekyll redirect from addon
- Node.js 21
- Yarn classic
If you are on Windows you need Ruby choco install ruby
and node choco install nodejs
.
Currently this is the latest that has been tested with WSL
sudo apt-get install ruby-full
sudo apt-get install -y nodejs
sudo apt-get install build-essential
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn
brew install ruby@3
The website uses Jekyll, so you need to install that first with sudo gem install bundler jekyll
.
Once done you also need to run sudo gem install jekyll-redirect-from
to install the dependencies.
Next install the development tools with yarn install
yarn start
To compile it is
jekyll build
You can swap build
for serve
to run the web server which does incremental updates as you change files.
Useful tools