Hello! Thank you for choosing to help contribute to one of the SendGrid open source libraries. There are many ways you can contribute and help is always welcome. We simply ask that you follow the following contribution policies.
- CLAs and CCLAs
- Feature Request
- Improvements to the Codebase
- Local Setup
- Config
- JS and CSS, etc
- Node Spellchecker
- Creating a Pull Request
Feel free to grab an issue you want to work on. Please indicate that you have begun work on it to avoid collisions. Once a PR is made, community review, comments, suggestions and additional PRs are welcomed and encouraged.
Submit all pull requests to the develop branch.
Before you get started, SendGrid requires that a SendGrid Contributor License Agreement (CLA) be filled out by every contributor to a SendGrid open source project.
Our goal with the CLA is to clarify the rights of our contributors and reduce other risks arising from inappropriate contributions. The CLA also clarifies the rights SendGrid holds in each contribution and helps to avoid misunderstandings over what rights each contributor is required to grant to SendGrid when making a contribution. In this way the CLA encourages broad participation by our open source community and helps us build strong open source projects, free from any individual contributor withholding or revoking rights to any contribution.
SendGrid does not merge a pull request made against a SendGrid open source project until that pull request is associated with a signed CLA. Copies of the CLA are available here.
When you create a Pull Request, after a few seconds, a comment will appear with a link to the CLA. Click the link and fill out the brief form and then click the "I agree" button and you are all set. You will not be asked to re-sign the CLA unless we make a change.
Before your pull request can be merged into the develop branch, you must submit a completed CLA.
There are a few ways to contribute, which we'll enumerate below:
If you'd like to make a feature request, please read this section.
The GitHub issue tracker is the preferred channel for library feature requests, but please respect the following restrictions:
- Please search for existing issues in order to ensure we don't have duplicate bugs/feature requests.
- Please be respectful and considerate of others when commenting on issues
We welcome direct contributions to the sendgrid docs code base. Thank you!
- Required:
- Git
- Xcode
- Java
- Rvm
- Yaml
- Homebrew
- npm
- git-flow
- bundler gem
- bower
-
Install Git for:
-
Install a GitGUI (if you want it) for:
-
Install Xcode (if you don't have it installed. Click the link to download)
-
Install Xcode command line tools > Xcode > Preferences > Downloads (These are bundled in Xcode as of OSX 10.9)
- Note: You may need to run
$ xcode-select --install
- Note: You may need to run
-
Install JDK The yui compressor will need the full JDK to run - http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
-
Install RVM
$ \curl -L [https://get.rvm.io](https://get.rvm.io/) | bash -s stable --ruby
-
Close and reopen your terminal window
-
Check which version of Ruby you have
$ ruby -v
The very latest stable version (2.4.0) isn't compatible with the gems we use for the build, so you'll probably need to download version 2.3.0.
$ rvm install 2.3.0
then set that version to be the default version
$ rvm --default use 2.3.0
-
Install Homebrew (if you don't have it)
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
Install YAML
$ brew install libyaml
-
Install npm
$ brew install npm
-
Set your Node version
$ npm install -g n
$ n 6.10.1
-
install git flow to manage branches (http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/) (optional)
$ brew install git-flow
-
clone repo
$ git clone https://github.com/sendgrid/docs.git
OR use the GitGUI tool to clone the repo
-
switch to develop branch to make changes
$ ls docs
$ git checkout develop
-
install bundle (if you don't have this installed)
$ sudo gem install bundler
-
Go to your docs directory
$ cd docs
-
Install the build tools
$ npm install
to install build tools.
-
Install bower
$ npm install -g bower
-
Install client-side dependencies (jQuery, bootstrap)
$ bower install
to install client-side dependencies.
-
Install required Ruby gems
$ bundle install
-
If the gem installation fails with a message like "An error occurred while installing libv8 (3.16.14.7), and Bundler cannot continue", a few extra steps will be necessary in order to build and install a version of V8 that can be used by the libv8 and therubyracer gems:
$ gem uninstall libv8
$ brew tap homebrew/versions
$ brew install --force v8-315
$ bundle config build.libv8 "--with-system-v8 --with-v8-dir=$(brew --prefix v8-315)"
$ sudo gem install therubyracer -v '0.12.2'
$ bundle config build.therubyracer "--with-v8-dir=$(brew --prefix v8-315)"
$ bundle install
-
-
Copy, DO NOT DELETE the _config.sample.yml file - definitely do not commit a delete of this file !
$ cp _config.sample.yml _config.yml
-
Edit the following items in the _config.yml "Jekyll & Plugins" section to match your local environment:
source: /path_to_your_files/source_
(if you're running locally path_to_your_files will be/)_
destination: /path_to_your_files/public
For example:
The source would be: /Users/USERNAME/docs/source
The destination would be: /Users/USERNAME/docs/public
-
Do the following instead of Jekyll serve:
$ bundle exec rake preview
Note: if you receive an error message similar to "No Java Runtime Present: Requesting Install" please see the following instructions
-
Open your Terminal or Cmd
-
If
java -version
gives you an error and a popup -
Get the download here
-
Install it
-
In your terminal, type:
$ export JAVA_HOME="/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home"
-
Run
java -version
again.
If that worked, then add the above command to your .bash_profile or .profile file and then run 'source .profile' http://stackoverflow.com/a/19582689
- Browse to http://localhost:4000
-
The source files are in
/source
, and the generated files will be created in/public
. They get overwritten or wiped out when the site is rebuilt. -
To rebuild the site,
ctrl-c
to cancel the build, and then [bundle exec rake preview] to restart it.
Install Docker first, then in terminal execute:
$ docker build -t sendgrid/docs:latest .
$ docker run --rm -it -p 4000:4000 sendgrid/docs:latest
Wait until you see Server running... press ctrl-c to stop.
and browse to http://localhost:4000
The config is defined in _config.yml
.
The only config variables you should need to know about are root
, which is the root from which all links are calculated, and the folder_weights
hash, which specifies the order that the folders should be displayed in the nav tree. Higher weights mean higher display priority (higher in the tree). You can also specify icons for folders with the
folder_icons
hash.
There's also a version
number in the config.
The nav tree is generated by the plugin site_navigation.rb
. It is essentially a recursive traversal of all the folders and pages in the Source folder that generates a hierarchical tree, sorted by folder weight and page weight.
Breadcrumbs are generated by the breadcrumbs.rb
plugin.
You can write pages in markdown, HTML, or HAML. They all get converted to HTML when the site is generated.
Pages have a block of YAML at the top that sets a few options. They are pretty self-explanatory; here's an example
---
layout: page
weight: 0
title: Docs Home
icon: icon-home
showTitle: false
navigation:
show: true
---
Weights are same as the folder weights - the higher numbers move higher up the tree. Icons are based on the CSS icon class names from Twitter Bootstrap. showTitle and navigation["show"] both default to true if not specified.
Various fields pertinent to SEO can be controlled through the YAML front matter. Here's an example:
---
seo:
title: Really Great Documentation - SendGrid Documentation | SendGrid
override: true
description: This is some really great documentation! I hope you like it!
canonical: http://sendgrid.com/docs/really-great-docs
---
By default <title>
tags follow the template {Page Title} {Site Title}
. However the page title can be changed for the purpose of the tag by using seo["title"]
. seo["override"]
will override the entire template, instead making the title page {seo["title"]}
. description
and canonical
change their respective tags.
There are some custom plugins (look in the plugins
folder) that define new liquid blocks for use in pages.
You can create anchor tags that will have named anchors generated for them automatically with links on hover. The parameter is the wrapping element to use.
{% anchor h2 %}
Some Anchor Text
{% endanchor %}
Similarly you can create info and warning blocks:
{% info %}
Some info for a breakout block.
{% endinfo %}
{% warning %}
...And a warning breakout.
{% endwarning %}
If you are working on API reference docs, you can generate XML and JSON nav tabs and the corresponding example calls and responses like so:
{% apiexample identifier GET http://some.endpoint.url var1=stuff&var2=junk %}
{% response json %}
{ "foo": "bar" }
{% endresponse %}
{% response xml %}
<foo>bar</foo>
{% endresponse %}
{% endapiexample %}
The parameters for the apiexample
block are: unique identifier, HTTP
method, the url (excluding .json or .xml extension), and the data
payload in querystring format.
JavaScript and CSS are minified and combined. The files to be packaged and their orders are specified in _includes/head.html
and CssMinify.yml
. Preprocessing and options can be specified
via _plugins/jekyll_asset_pipeline.rb
.
This is a spellchecker functionality using node-markdown-spellcheck node package.
# (pull code updates before this)
# install updated npm package dependencies!
$ npm install
# generates report of misspellings
$ npm run spellcheck
# generates report of misspellings of [filename]
$ npm run spellcheck-file [filename]
See http://wordlist.aspell.net/dicts/.
Also .spelling
contains a list of custom words added to the dictionary.
This still needs work! Many, many words in tech jargon come back as incorrect. The best way I've found to solve this issue without too much overhead work:
- Run
$ npm run spellcheck
- Edit
.spelling
to include the words that are coming back incorrect but are correct!
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory $ git clone https://github.com/sendgrid/docs # Navigate to the newly cloned directory $ cd docs # Assign the original repo to a remote called "upstream" $ git remote add upstream https://github.com/sendgrid/docs
-
If you cloned a while ago, get the latest changes from upstream:
$ git checkout <dev-branch> $ git pull upstream <dev-branch>
-
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
$ git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks. Please adhere to these git commit message guidelines or your code is unlikely to be merged into the main project. Use Git's interactive rebase feature to tidy up your commits before making them public.
4a. Create tests.
4b. Create or update the example code that demonstrates the functionality of this change to the code.
-
Locally merge (or rebase) the upstream development branch into your topic branch:
$ git pull [--rebase] upstream master
-
Push your topic branch up to your fork:
$ git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description against the
master
branch. All tests must be passing before we will review the PR.
If you have any additional questions, please feel free to email us or create an issue in this repo.