TITLE: Running Nerv DAO Development Server (pnpm) DESCRIPTION: This command starts the Nerv DAO application in development mode, typically with hot-reloading and debugging features enabled. It allows developers to test changes quickly without a full rebuild. SOURCE: https://github.com/ckb-devrel/nervdao/blob/main/README.md#_snippet_2 LANGUAGE: bash CODE: ``` pnpm run dev ``` ---------------------------------------- TITLE: Installing Dependencies for Nerv DAO Project (pnpm) DESCRIPTION: This command installs all necessary project dependencies using pnpm, a fast, disk-space efficient package manager. It should be run in the project's root directory after cloning the repository. SOURCE: https://github.com/ckb-devrel/nervdao/blob/main/README.md#_snippet_0 LANGUAGE: bash CODE: ``` pnpm install ``` ---------------------------------------- TITLE: Building Nerv DAO Project (pnpm) DESCRIPTION: This command compiles and builds the Nerv DAO project for production or deployment using pnpm. It processes source code and assets into an optimized output, typically after dependencies have been installed. SOURCE: https://github.com/ckb-devrel/nervdao/blob/main/README.md#_snippet_1 LANGUAGE: bash CODE: ``` pnpm run build ```