Re: Life in software engineering from zero: 0x2
title: Re: Life in software engineering from zero: 0x2
标题: Re: 从零开始的软工生活: 0x2
タイトル: Re: ゼロからのソフトウェアエンジニアリング: 0x2
如何接手一个 vue 项目
- 配置新的 rsa 钥匙对
生成新的 rsa 钥匙对
ssh-keygen -t rsa -C "Comment" -f ~/.ssh/newkey"
更新 ssh config
vim ~/.ssh/config
1 | Host 仓库地址 |
- 添加 ssh 公钥到线上 git 账户
- 重新配置 npm 源
使用淘宝源安装 nrm
npm install nrm -g --registry=http://registry.npm.taobao.org
切换 npm 源
nrm use taobao
- 安装软件
安装 vue-cli3
npm install -g @vue/cli
安装 node_modules
npm i
待更新