TITLE: Run Spore Demo Development Server DESCRIPTION: Starts the development server for the Spore Demo application. Once running, the application can be accessed in a web browser at http://localhost:3000. SOURCE: https://github.com/sporeprotocol/spore-demo/blob/main/README.md#_snippet_3 LANGUAGE: bash CODE: ``` pnpm run dev ``` ---------------------------------------- TITLE: Install Spore Demo Project Dependencies DESCRIPTION: Installs PNPM globally if not already present, then uses PNPM to install all required project dependencies. PNPM is the recommended package manager for this project. SOURCE: https://github.com/sporeprotocol/spore-demo/blob/main/README.md#_snippet_2 LANGUAGE: bash CODE: ``` npm install pnpm -g pnpm install ``` ---------------------------------------- TITLE: Navigate to Spore Demo Project Directory DESCRIPTION: Changes the current working directory to the newly cloned 'spore-demo' folder, preparing for dependency installation. SOURCE: https://github.com/sporeprotocol/spore-demo/blob/main/README.md#_snippet_1 LANGUAGE: bash CODE: ``` cd spore-demo ``` ---------------------------------------- TITLE: Clone Spore Demo Repository DESCRIPTION: Clones the Spore Demo project repository from GitHub to your local machine, initiating the setup process. SOURCE: https://github.com/sporeprotocol/spore-demo/blob/main/README.md#_snippet_0 LANGUAGE: bash CODE: ``` git clone https://github.com/ahonn/spore-demo.git ```