1.0.2 • Published 3 years ago

web-cli2 v1.0.2

Weekly downloads
129
License
MIT
Repository
-
Last release
3 years ago

mapping module to global

$ yarn link

execute command without permission

$ web-cli
bash: /usr/local/bin/web-cli: Permission denied

grant permission

$ chmod +x cli.js 
$ ls -l
total 24
-rw-r--r--  1 ts  staff  75 Feb 20 11:42 README.MD
-rwxr-xr-x  1 ts  staff  48 Feb 20 11:41 cli.js
-rw-r--r--  1 ts  staff  88 Feb 20 11:41 package.json
$ web-cli
cli working

project configurations examples

{
  "projects": [
    {
      "name": "ProjectName",
      "local": "dist/",
      "exclude": ["*.gz", "UEditor"],
      "env": {
        "staging": {
          "server": "s32",
          "username": "root",
          "password": "123456",
          "path": "/server-path"
        },
        "rc": {
          "server": "s56",
          "username": "root",
          "path": "/server-path"
        },
        "production": {
          "server": "s56",
          "username": "root",
          "path": "/server-path"
        }
      }
    }
  ]
}