Contributing to the IntelliJ Platform SDK
This document describes our contribution guidelines for the open source IntelliJ Platform SDK documentation and sample code. Before you begin contributing content to the SDK, please read this page thoroughly as well as the Code of Conduct and License documents. For information about contributing to the IntelliJ Platform itself, please visit Contributing to the IntelliJ Platform.
Here are some useful things to know before authoring SDK content and submitting your Pull Request.
- Setting Up the Documentation Build Environment
- Documentation Repository Submodules
- Creating IntelliJ Platform SDK Content
Setting Up the Documentation Build Environment
This site runs via Jekyll, which is a popular static site generator, written in Ruby. It can be hosted locally to ensure that any changes are correct. Once set up, running the site is as easy as calling rake preview
.
Alternatively, the site can also be hosted in a Docker container. On Mac and Windows, this means the site is hosted in a virtual machine. Docker maintains this container, building it based on the instructions in the Dockerfile
. All dependencies (Ruby, etc.) are automatically installed when building the image, which reduces the manual configuration steps. The Docker image is also used to build the published site, so it is a known working environment.
Developing Documentation with Docker
Follow these steps to work with Docker:
- Firstly, install Docker, using the Docker Toolbox.
- On Windows and Mac, start the Docker host virtual machine (start the “Docker Quickstart terminal” or run “Kitematic.” See the Getting Started guides on docker.com for more details).
- Clone the
intellij-sdk-docs
repo to the local machine, and initialise thesdkdocs-template
submodule. - Change the current directory to the parent directory of the git repo.
- Run
docker build -t intellij-sdk-docs .
to build the docker image from the current folder, and give it the tagintellij-sdk-docs
.- Note that this must be run from a command prompt that has the various
DOCKER_*
environment variables set up, such as the Docker Quickstart Terminal.
- Note that this must be run from a command prompt that has the various
- Run
docker run -p 4000:4000 -v $PWD:/usr/src/app intellij-sdk-docs
. This command will:- Start the docker container called
intellij-sdk-docs
. - Forward port 4000 from the docker container to port 4000 on the docker client.
- Mount the current directory (
$PWD
is a Unix style environment variable. You can use%CD%
on Windows, or specify the full path) as/usr/src/app
inside the docker container. The docker image will see theintellij-sdk-docs
repo as the folder/usr/src/app
.
- Run the commands in the Dockerfile’s
CMD
instruction to execute: rake bootstrap
, which ensures all of the prerequisites are installed,rake preview
, which builds the site and starts to host it.
- Start the docker container called
- Finally, you can access the newly created site by visiting http://localhost:4000/intellij/sdk/docs/, or by using the IP address of the docker client virtual machine (see the note above).
Developing Documentation Locally
To build the documentation site, you need:
- Ruby 2 - Jekyll is a Ruby application.
- Ruby 2 DevKit (for Windows) - Some of Jekyll’s dependencies need to be compiled, and require the DevKit to be installed.
gem install bundler
- the site uses Bundler to manage gem dependencies within the repo, rather than globally installing to the local operating system. Run this command to install the Bundler toolset globally.
macOS
macOS comes with Ruby already installed. The only steps required are:
gem install bundler
Windows
- Install Ruby 2 and the Ruby 2 DevKit (one of the gems needs to build a native component)
- After installing the DevKit, make sure to edit the
config.yml
file to point to the Ruby installation
- After installing the DevKit, make sure to edit the
This installation is easier if you use Chocolatey, a package manager for Windows:
choco install ruby
choco install ruby2.devkit
- After installing the DevKit, make sure to edit the
config.yml
file to point to the Ruby installation. - By default, this is
C:\tools\DevKit\config.yml
- Add the line
- C:\tools\ruby21
(including the leading minus sign)
- After installing the DevKit, make sure to edit the
Bootstrapping the Documentation Build Environment
- Ensure Bundler is installed -
gem install bundler
. - On Windows, ensure the
devkitvars.bat
file has been run in the current command prompt (e.g.c:\tools\DevKit\devkitvars.bat
). - Clone the documentation site.
- Initialize and update the
sdkdocs-template
submodule -git submodule init
andgit submodule update
rake bootstrap
- this uses Bundler to download all required gems.rake preview
- this will build the site, and host it in a local webserver.
Building and Previewing the Site
To build and test the site, run rake preview
. This will build the site and host it, using the config provided. The URL of the hosted site is displayed on the screen and depends on the baseurl
field defined in _config.yml
.
Documentation Repository Submodules
The sdkdocs-template
directory is actually a Git submodule, and it contains a submodule to the private webhelp-template
repository.
The sdkdocs-template
repository contains build scripts and compiled and minified JS and CSS that allow the site to run.
The private webhelp-template
repository contains the code to build the JS and CSS.
It is currently closed source, but the plan is to make it open source at some point, in which case it is likely the two repositories will be merged.
After cloning, a submodule needs to be initialized and updated:
git submodule init
git submodule update
Initialization creates a .gitmodules
file, register a submodule in the sdkdocs-template
folder and check out the files.
Note that when a repo is added as a submodule, it doesn’t get a .git
folder, but instead gets a .git
file that points to the actual location of the .git
folder.
A submodule can be updated using normal git commands such as git pull
.
It can be switched to a different branch using git checkout
, and any changes to the currently checked out revision need to be committed back into the main repository using git commands.
A submodule is initially cloned at a specific revision, and not as part of a branch.update
If changes are made to the submodule, they should be made on a branch to a clone, and a Pull Request sent. Changes can be made and committed, and the hosting repository will need to commit a pointer to the current version of the submodule.
If there are any problems with the sdkdocs-template
, please raise an issue.
Creating IntelliJ Platform SDK Content
Content contributions to the IntelliJ Platform SDK are welcome. Please download or clone the open source SDK project from GitHub, make additions or changes, and submit a pull request. Before creating or altering content, please consult these guides:
- SDK Documentation Style Guide. This guide describes documentation conventions in terms of Markdown syntax. Always test documentation changes using a preview of the site.
- SDK Code Sample Guidelines. Conventions for code sample organization, project settings, and naming conventions are described in this document. Always test code changes by building and testing the SDK code sample.