### Start Development Environment Source: https://github.com/vaingloryreborn/vgreborn/blob/main/DEVELOPMENT.md Commands to start the development environment. Use 'dev:all' to start both frontend and monitoring services simultaneously, or individual commands for each. ```bash # Start both frontend and monitoring service npm run dev:all # Start frontend only npm run dev:web # Start monitoring service only npm run dev:monitor ``` -------------------------------- ### Install Dependencies Source: https://github.com/vaingloryreborn/vgreborn/blob/main/CONTRIBUTING.md Run this command from the root of the repository to install all project dependencies. ```shell pnpm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/vaingloryreborn/vgreborn/blob/main/DEVELOPMENT.md Run this command in the root directory to install all project dependencies. Supports both npm and pnpm. ```bash # If using npm npm install # If using pnpm (recommended) pnpm install ``` -------------------------------- ### Create a Feature Branch Source: https://github.com/vaingloryreborn/vgreborn/blob/main/CONTRIBUTING.md Before starting new work, create a new branch for your feature or bug fix. ```shell git checkout -b feature/amazing-feature ``` -------------------------------- ### Build Project Source: https://github.com/vaingloryreborn/vgreborn/blob/main/DEVELOPMENT.md Command to build all sub-projects within the monorepo. ```bash npm run build ``` -------------------------------- ### Run Package Development Server Source: https://github.com/vaingloryreborn/vgreborn/blob/main/CONTRIBUTING.md In the monorepo, use the --filter flag to run the development server for a specific package. ```shell pnpm --filter web dev ``` -------------------------------- ### Push Changes to Fork Source: https://github.com/vaingloryreborn/vgreborn/blob/main/CONTRIBUTING.md After committing your changes, push them to your forked repository. ```shell git push origin feature/amazing-feature ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.