### Install Dependencies and Start Development Server with Bun Source: https://github.com/aragon/gov-app-template/blob/main/README.md These commands are essential for running the Governance App Template locally. `bun install` fetches and installs all necessary project dependencies efficiently, leveraging Bun's package management capabilities. Following that, `bun dev` starts the local development server, making the application accessible for testing and further development. ```bash bun install bun dev ``` -------------------------------- ### Clone and Navigate to Governance App Template Repository Source: https://github.com/aragon/gov-app-template/blob/main/README.md This sequence of commands is used to initialize the development environment for the Aragon Governance App Template. First, `git clone` downloads the project source code from GitHub, and then `cd` changes the current directory into the newly cloned repository, preparing for dependency installation and development server startup. ```bash git clone https://github.com/aragon/gov-app-template.git cd gov-app-template ``` -------------------------------- ### Configure Git Remote for Aragon Gov App Template Source: https://github.com/aragon/gov-app-template/blob/main/README.md This snippet demonstrates how to add an 'upstream' remote to your local Git repository, pointing to the official Aragon Governance App Template. It also disables pushing to this upstream remote, ensuring changes are only pulled. ```bash git remote add upstream git@github.com:aragon/gov-app-template.git git remote set-url --push upstream DISABLE ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.