codeclimate
is a command line interface for the Code Climate analysis
platform. It allows you to run Code Climate engines on your local machine inside
of Docker containers.
Use boot2docker and our Homebrew wrapper scripts:
- Install boot2docker.
- Complete the boot2docker set up steps. Ensure that you initalize the boot2docker virtual machine, start it, and then set the required Docker environment variables. Before continuing on, run
docker version
to verify that Docker is succesfully set up and running. - If it's not already, install Homebrew.
- Run
brew tap codeclimate/formulae
and thenbrew install codeclimate
. - To use the Code Climate CLI, run
codeclimate help
.
If you prefer not to use Homebrew:
- Install boot2docker.
- Complete the boot2docker set up steps. Ensure that you initalize the boot2docker virtual machine, start it, and then set the required Docker environment variables. Before continuing on, run
docker version
to verify that Docker is succesfully set up and running. - Run
docker pull codeclimate/codeclimate
. - To use the Code Climate CLI:
docker run \
--interactive --tty --rm \
--env CODE_PATH="$PWD" \
--volume "$PWD":/code \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume /tmp/cc:/tmp/cc \
codeclimate/codeclimate help
If you are not using OS X:
- Run the following command:
curl -L https://github.com/codeclimate/codeclimate/archive/v0.0.7.tar.gz | tar xvz
cd codeclimate-* && sudo make install
- Run
docker pull codeclimate/codeclimate
. Before continuing on, rundocker version
to verify that Docker is succesfully set up and running. - To use the Code Climate CLI:
docker run \
--interactive --tty --rm \
--env CODE_PATH="$PWD" \
--volume "$PWD":/code \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume /tmp/cc:/tmp/cc \
codeclimate/codeclimate help
A list of available commands is accessible by running codeclimate
or codeclimate help
.
$ codeclimate help
Available commands:
analyze [-f format]
engines:disable engine_name
engines:enable engine_name
engines:install
engines:list
engines:remove
help
init
validate-config
version
Description of each command:
analyze
: Analyze all relevant files in the current working directory. All engines that are enabled in your.codeclimate.yml
file will run, one after another. The-f
(orformat
) argument allows you to set the output format of the analysis (usingjson
ortext
).engines:disable engine_name
: Changes the engine'senabled:
node to befalse
in your.codeclimate.yml
file. This engine will not be run the next time your project is analyzed.engines:enable engine_name
: Installs the specified engine (engine_name
). Also changes the engine'senabled:
node to betrue
in your.codeclimate.yml
file. This engine will be run the next time your project is analyzed.engines:install
: Compares the list of engines in your.codeclimate.yml
file to those that are currently installed, then installs any missing engines.engines:list
: Lists all available engines in the Code Climate Docker Hub.engines:remove engine_name
: Removes an engine from your.codeclimate.yml
file.help
: Displays a list of commands that can be passed to the Code Climate CLI.init
: Generates a new.codeclimate.yml
file in the current working directory.validate-config
: Validates the.codeclimate.yml
file in the current working directory.version
: Displays the current version of the Code Climate CLI.
See LICENSE