### Playball Development Setup Source: https://github.com/paaatrick/playball/blob/main/README.md This snippet outlines the steps to set up the Playball development environment. It involves cloning the repository, installing dependencies, and starting the development server. ```shell git clone https://github.com/paaatrick/playball.git cd playball npm install npm start ``` -------------------------------- ### Quick Start Playball Installation Source: https://github.com/paaatrick/playball/blob/main/README.md This snippet shows how to quickly run Playball without a global installation using `npx`. This is useful for trying out the tool immediately. ```shell $ npx playball ``` -------------------------------- ### Global Installation and Usage of Playball Source: https://github.com/paaatrick/playball/blob/main/README.md This snippet demonstrates how to install Playball globally using npm and then run the application from the command line. Global installation makes the `playball` command available system-wide. ```shell $ npm install -g playball $ playball ``` -------------------------------- ### Docker Installation and Running Playball Source: https://github.com/paaatrick/playball/blob/main/README.md These commands illustrate how to build a Docker image for Playball and then run it as a container. Docker provides an isolated environment for running the application. ```shell $ docker build -t playball . $ docker run -it --rm --name playball playball:latest ``` -------------------------------- ### Playball Configuration Management Source: https://github.com/paaatrick/playball/blob/main/README.md This snippet shows how to interact with Playball's configuration settings via the `config` subcommand. It covers listing current settings, getting a specific value, changing a setting, and reverting a setting to its default. ```shell playball config playball config color.strike playball config color.strike blue playball config color.strike --unset ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.