# Development

By

This chapter contains development related topics for working on Rocket itself. This means that e.g. the release management workflow is not part of the Rocket CLI so far.

# Checkout the code

To checkout the repository, you can follow these steps:

  1. Open your terminal or command prompt.
  2. Navigate to the directory where you want to clone the repository.
  3. Run the following command:
    git clone https://github.com/kernpunkt/rocket.git
  4. Wait for the repository to be cloned to your local machine.
  5. Switch to the newly created folder and install the dependencies.
    cd rocket
    yarn

# Start CLI

You can list all possible CLI commands with

yarn dev --help

All of these commands are implemented in the file src/cli/command/RocketCommand.ts.

An overview of the commands: Rocket commands cheatsheet