### Install Project Dependencies Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Navigate to the project directory and install all necessary dependencies using pnpm. Ensure you are in the 'vue-pure-admin' directory. ```bash cd vue-pure-admin pnpm install ``` -------------------------------- ### Run the Development Server Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Start the development server for the vue-pure-admin project using the pnpm dev command. This command is used for local development and testing. ```bash pnpm dev ``` -------------------------------- ### Install @pureadmin/cli Globally Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Install the @pureadmin/cli scaffolding tool globally using npm. This tool helps in creating new projects with the vue-pure-admin template. ```bash npm install -g @pureadmin/cli ``` -------------------------------- ### Run Docker Container Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Run a Docker container named 'pure-admin' from the 'vue-pure-admin' image, mapping host port 8080 to container port 80. This command starts the application in a container. ```bash docker run -dp 8080:80 --name pure-admin vue-pure-admin ``` -------------------------------- ### Create Project with @pureadmin/cli Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Use the pure create command to interactively select templates and create a new vue-pure-admin project. Refer to the @pureadmin/cli documentation for detailed usage. ```bash pure create ``` -------------------------------- ### Build Docker Image Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Build a Docker image named 'vue-pure-admin' using the Dockerfile in the current directory. Ensure the Dockerfile is present. ```bash docker build -t vue-pure-admin . ``` -------------------------------- ### Build Project for Production Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Build the vue-pure-admin project for production deployment using the pnpm build command. This command generates optimized static assets. ```bash pnpm build ``` -------------------------------- ### Clone Vue-Pure-Admin from Gitee Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Clone the vue-pure-admin project repository from Gitee using the git clone command. ```bash git clone https://gitee.com/yiming_chang/vue-pure-admin.git ``` -------------------------------- ### Clone Vue-Pure-Admin from GitHub Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.en-US.md Clone the vue-pure-admin project repository directly from GitHub using the git clone command. ```bash git clone https://github.com/pure-admin/vue-pure-admin.git ``` -------------------------------- ### Commit Changes Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.md Stage and commit your changes with a descriptive message. ```bash git commit -am 'feat(function): add xxxxx' ``` -------------------------------- ### Create Feature Branch Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.md Create a new branch for developing a new feature. ```bash git checkout -b feat/xxxx ``` -------------------------------- ### Push Branch Source: https://github.com/pure-admin/vue-pure-admin/blob/main/README.md Push your local feature branch to the remote repository. ```bash git push origin feat/xxxx ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.