### Start Development Server with npm Source: https://github.com/uptane/uptane.github.io/blob/main/README.md This command starts the Docusaurus development server using npm. It allows you to see your changes live at http://localhost:3000. Ensure all dependencies are installed before running. ```sh npm start ``` -------------------------------- ### Install Project Dependencies with Yarn Source: https://github.com/uptane/uptane.github.io/blob/main/README.md This command installs all the necessary project dependencies using Yarn. Ensure Yarn is installed globally on your system. If not, refer to the Yarn documentation for installation. ```sh yarn install ``` -------------------------------- ### Start Development Server with Yarn Source: https://github.com/uptane/uptane.github.io/blob/main/README.md This command starts the Docusaurus development server using Yarn. It allows you to see your changes live at http://localhost:3000. Ensure all dependencies are installed before running. ```sh yarn start ```