#
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:
- Open your terminal or command prompt.
- Navigate to the directory where you want to clone the repository.
- Run the following command:
git clone https://github.com/kernpunkt/rocket.git
- Wait for the repository to be cloned to your local machine.
- 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
More information about development issues may be added in the future.