### Starting Bot for First-Time Setup Source: https://github.com/bryanbotdev/bryanbot.dev/blob/master/docs/setup/installation.md After installing dependencies, these commands initiate the bot's first-time setup process. This typically involves initial configuration and starting the bot's main application, using your chosen package manager (npm, Yarn, or pnpm). ```bash npm run start ``` ```bash yarn start ``` ```bash pnpm start ``` -------------------------------- ### Installing Project Dependencies Source: https://github.com/bryanbotdev/bryanbot.dev/blob/master/docs/setup/installation.md These commands install all necessary project dependencies for the bot. Depending on your preferred package manager (npm, Yarn, or pnpm), execute the corresponding command in the terminal after downloading the source code. ```bash npm install ``` ```bash yarn ``` ```bash pnpm install ``` -------------------------------- ### Installing Dependencies for Docusaurus Project (Shell) Source: https://github.com/bryanbotdev/bryanbot.dev/blob/master/README.md This command installs all necessary project dependencies using Yarn. It should be run once after cloning the repository to set up the development environment. ```Shell $ yarn ``` -------------------------------- ### Starting Local Development Server for Docusaurus (Shell) Source: https://github.com/bryanbotdev/bryanbot.dev/blob/master/README.md This command initiates a local development server, typically opening a browser window. It enables live reflection of changes without requiring a server restart, facilitating rapid development. ```Shell $ yarn start ``` -------------------------------- ### Building Static Content for Docusaurus Website (Shell) Source: https://github.com/bryanbotdev/bryanbot.dev/blob/master/README.md This command compiles the Docusaurus website into static content, placing the output in the `build` directory. The generated content can then be served by any standard static content hosting service. ```Shell $ yarn build ``` -------------------------------- ### Deploying Docusaurus Website via SSH (Shell) Source: https://github.com/bryanbotdev/bryanbot.dev/blob/master/README.md This command deploys the Docusaurus website using SSH for authentication. It's a convenient method for building and pushing the website to the `gh-pages` branch, especially when using GitHub Pages. ```Shell $ USE_SSH=true yarn deploy ``` -------------------------------- ### Deploying Docusaurus Website without SSH (Shell) Source: https://github.com/bryanbotdev/bryanbot.dev/blob/master/README.md This command facilitates deployment of the Docusaurus website without relying on SSH, requiring the GitHub username to be provided. It's suitable for building and pushing to the `gh-pages` branch, particularly for GitHub Pages hosting. ```Shell $ GIT_USER= yarn deploy ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.