This repository powers the development site for Sketch, that lives at developer.sketchapp.com.
We've made this repository public so you can contribute to it. If you find a typo, or an error, or want to improve the content, feel free to send us a pull request. Also, if there's anything you'd like to see covered or documented, file an issue and we'll do it for you.
We use Jekyll as our content backend, so make sure to read their docs if you need help understanding how the system works.
If you want to get the site working locally, you'll need to have node and bundler installed. On OS X you'll also need to have Xcode's command line tools installed (xcode-select --install
).
Once you have them, run this:
sudo npm install --global gulp
bundle install --path _vendor
npm install
and then run
gulp
to start the server and open a browser automatically.
Note: you may find issues with nokogiri when running bundle install
. If that's the case, try the following:
bundle config build.nokogiri --use-system-libraries --with-xml2-include=/usr/include/libxml2/
If that doesn't work, check the troubleshooting tips on Nokogiri's page