Skip to content

NorfolkDataSci/NorfolkDataSci.github.io

Repository files navigation

NorfolkDataSci.github.io

Home page for the Norfolk Data Science community

Group Logo Norfolk Data Science is: A group of professionals in Norfolk, VA building skills in the field of data science through speakers, tutorials, and hands-on data projects for social good.

Contributing

In order to see changes on your local branch, you will need to set up Jekyll to render the site locally. Github provides a great tutorial on how to do this. Below is a summary, but a more complete explanation can be found here


Check for ruby

$ ruby --version

Install bundler

$ gem install bundler

Create a file called Gemfile in the root of your project and add the following lines:

source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins

Install Jekyll dependencies

$ bundle install

Build the site locally

$ bundle exec jekyll serve

If you run into any problems installing Jekyll and Bundle on OSX, make sure you have Xcode Command Line Tools up-to-date by running

$ xcode-select --install