Skip to content

搭建开发环境

Gary Du edited this page Jun 25, 2023 · 3 revisions
  1. 安装Git: 可以在Git官方网站下载并安装Git。

  2. 安装Node.js: 项目使用Vue3框架进行开发,并且依赖于Node.js来运行命令。可以在Node.js官方网站下载并安装Node.js。

  3. 安装Yarn: Yarn是一个快速、可靠、安全的依赖管理工具。

    npm install --global yarn

    注意:在安装Yarn时,你需要确认Node.js已经被安装在你的电脑上。npm是来自node.js的命令

  4. 克隆项目: 使用下面的命令从GitHub上克隆项目。

    git clone https://github.com/jacarandastock/website_devlopment_front.git
  5. 进入项目目录

    cd website_devlopment_front
  6. 安装项目依赖

    yarn
  7. 启动开发服务器

    yarn dev

    这时,你应该可以在你的浏览器中看到项目运行的情况。一般来说,如果没有指定其他端口,你可以通过访问http://localhost:3000(端口可能会不同,具体端口会在运行yarn dev命令后在命令行中显示)来查看。

Some suggestions:

IDE个人比较喜欢用Webstorm: https://www.jetbrains.com/webstorm/

可以使用教育用户来获得专业版的使用license: https://www.jetbrains.com/community/education/#students

蓝楹会

Clone this wiki locally