/code-of-conduct

Draft code of conduct

Primary LanguageCSS

Code of Conduct

Published: Code of Conduct

TO DO

  • Add License file (proposal sent to list for review)
  • Add Contact Info

Editing Instructions

Fork this repo -- this makes a copy in your github account

Edit markdown (.md) files at the root directory or functional/visual design in _layouts, javascripts, stylesheets.

Do not directly edit anything in _sites

Send a pull request

To make changes locally

We're using the github-pages gem to ensure we're using locally the same versions of gems that github uses when we publish.

git clone git@github.com:yourname/code-of-conduct.git
cd code-of-conduct
bundle install

To run the site locally:

jekyll serve

View site at http://localhost:4000

For RailsBridge admin people

to publish to gh-pages, clone this repo, then...

git branch --track gh-pages origin/gh-pages

git checkout gh-pages
git merge master
git push