git

  1. 生成公钥
    • ssh-keygen -C "邮箱"
  2. 配置换行 (仅限 windows 电脑)
    • git config --global core.autocrlf input
    • git config --global core.safecrlf true

把公钥配置到对应代码仓库的个人账户中, 之后克隆代码

nginx

windows

官网下载 nginx
https://nginx.org/en/download.html

macos

brew install nginx

  1. 配置 config/nginx.conf
  2. 在文件末尾添加配置,并创建servers目录

    1. include servers/*.conf;
  3. 启动nginx

  4. 常用命令 ```markdown

    修改完配置需要重启 nginx

    windows

    // 查找进程 ps -ef | grep nginx

// 启动 start nginx // 关闭 nginx -s stop // 重启 nginx -s reload

macos

// 查看信息 brew service info nginx // 重启 brew service restart nginx

```

node

安装 v14 版本
下载地址

vscode

常用插件