With the development of front-end technology, more and more companies or individuals are beginning to use Vue to develop front-end projects. However, after the project development is completed, how to deploy it to the cloud?
In this article, we will explore how to deploy your Vue project to Gitee, allowing you to easily show your project to the world.
- Create a Gitee repository
First, you need to create a repository on Gitee to store the code of your Vue project. If you don't have a Gitee account yet, please register one first.
Log in to Gitee and click the "New" button in the upper right corner, and select "New Warehouse" in the drop-down menu.
In the new page, enter your repository name, description and selected category, select "Public" or "Private" access, and add other settings (such as project language, etc.).
Once you have entered all the necessary information and confirmed it is correct, click "Create Warehouse".
- Create a Vue project locally
After creating the warehouse on Gitee, we need to create a Vue project locally.
Enter the following command at the command line to create a new Vue project using the Vue CLI:
vue create <app-name></app-name>
Then, select the type of configuration you want and wait for the project creation to complete.
After the project is created, start the local development server using the following command:
npm run serve
This will start a local server where you can view and test your Vue application.
- Connecting the local repository and the Gitee repository
Now we have created the local Vue project and the Gitee repository, but they are not connected together yet.
In the directory of the local Vue project, open the command line and enter the following command:
git init
This will create a new local Git repository. Next, we need to associate this local repository with the Gitee repository.
Enter the following command on the command line:
git remote add origin
where
Now, we have successfully associated the local repository with the remote Gitee repository.
- Upload local files to the Gitee repository
In this step, we need to upload the code of the local Vue project to the Gitee repository.
Locally and in the Vue project directory, use the following command to add your code and commit it to the local Git repository:
git add . git commit -m "Initial commit"
This will put all the files of your Vue application and folder to Git's local repository and commit it.
Next, use the following command to push all local changes to the remote Gitee repository:
git push -u origin main
This will push your Vue project code to the repository you created on Gitee. Once uploaded, you can view your project code on Gitee.
- Deploy the Vue project
Now, we have uploaded the Vue project to the Gitee repository. Here's how to deploy it.
In the Gitee repository, click the "Settings" button and select the "Pages" tab.
In the "Pages" tab, you can enable the Gitee Pages service for your Vue project.
First, select the "Source" drop-down menu and select the "gh-pages" branch there. Then, select the "Save" button to save your changes.
At the top of the page you will see the URL for your project. Now you have successfully deployed your Vue project and can access it through this URL.
- Update Vue Project
After deploying your Vue project to Gitee, you may need to update or modify it. You can update by following these steps:
First, in the directory of your local Vue project, run the following command to get the latest code:
git pull origin main
This will download the latest code and Merge into your local repository.
Next, upload your changes to the Gitee repository:
git add . git commit -m "Your commit message" git push origin main
Now, your updates have been successfully uploaded to Gitee and are effective on your Vue project.
Summary:
In this tutorial, we demonstrated how to deploy your Vue project to Gitee. Please make sure you have created a repository on Gitee and connected your local Vue project with the Gitee repository. Next, upload the file to the Gitee repository, enable the Gitee Pages service, and you can easily deploy your Vue project.
The above is the detailed content of How to deploy vue project to gitee. For more information, please follow other related articles on the PHP Chinese website!

This guide explains how to push a single Git commit to a remote branch. It details using a temporary branch to isolate the commit, pushing this branch to the remote, and then optionally deleting the temporary branch. This method avoids conflicts and

This article provides a guide to Git management, covering GUI tools (Sourcetree, GitKraken, etc.), essential commands (git init, git clone, git add, git commit, etc.), branch management best practices (feature branches, pull requests), and merge con

This article explains the difference between Git's commit and push commands. git commit saves changes locally, while git push uploads these committed changes to a remote repository. The article highlights the importance of understanding this distin

This article addresses common Git commit failures. It details troubleshooting steps for issues like untracked files, unstaged changes, merge conflicts, and pre-commit hooks. Solutions and preventative measures are provided to ensure smoother Git wo

This article details methods for viewing Git commit content. It focuses on using git show to display commit messages, author info, and changes (diffs), git log -p for multiple commits' diffs, and cautions against directly checking out commits. Alt

This article explains the distinct roles of git add and git commit in Git. git add stages changes, preparing them for inclusion in the next commit, while git commit saves the staged changes to the repository's history. This two-step process enables

This beginner's guide introduces Git, a version control system. It covers basic commands (init, add, commit, status, log, branch, checkout, merge, push, pull) and resolving merge conflicts. Best practices for efficient Git use, including clear comm

This article introduces Git, a distributed version control system. It highlights Git's advantages over centralized systems, such as offline capabilities and efficient branching/merging for enhanced collaboration. The article also details learning r


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment
