### Install Project Dependencies with pnpm Source: https://github.com/alive24/ckb-autotrader/blob/main/README.md This command installs all necessary project dependencies using pnpm, a fast, disk space efficient package manager. It should be run after cloning the repository to set up the development environment. ```bash pnpm install ``` -------------------------------- ### Run CKB-Autotrader in Production Mode Source: https://github.com/alive24/ckb-autotrader/blob/main/README.md This command starts the application in production mode, optimizing for performance and stability. It's used for deploying the application to a live environment. ```bash pnpm run start:prod ``` -------------------------------- ### Run CKB-Autotrader in Development Mode Source: https://github.com/alive24/ckb-autotrader/blob/main/README.md This command starts the application in development mode, typically with hot-reloading or similar features enabled for faster iteration. It's used for active development and debugging. ```bash pnpm run start ``` -------------------------------- ### Run End-to-End Tests Source: https://github.com/alive24/ckb-autotrader/blob/main/README.md This command executes the end-to-end (e2e) tests for the project. E2E tests simulate real user scenarios to ensure the entire application flow works as expected from start to finish. ```bash pnpm run test:e2e ``` -------------------------------- ### Run CKB-Autotrader in Watch Mode Source: https://github.com/alive24/ckb-autotrader/blob/main/README.md This command starts the application in watch mode, which automatically recompiles and restarts the server upon file changes. It's ideal for continuous development without manual restarts. ```bash pnpm run start:dev ``` -------------------------------- ### Run Unit Tests Source: https://github.com/alive24/ckb-autotrader/blob/main/README.md This command executes the unit tests for the project. Unit tests verify the smallest testable parts of an application, ensuring individual components function correctly. ```bash pnpm run test ``` -------------------------------- ### Generate Test Coverage Report Source: https://github.com/alive24/ckb-autotrader/blob/main/README.md This command runs tests and generates a code coverage report, indicating which parts of the codebase are covered by tests. It helps identify untested areas and improve test suite completeness. ```bash pnpm run test:cov ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.