Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cafreeman committed May 6, 2021
1 parent e30d38f commit 19e1262
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
68 changes: 34 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $ npm install -g @salesforce/plugin-functions
$ sfdx COMMAND
running command...
$ sfdx (-v|--version|version)
@salesforce/plugin-functions/0.0.4 darwin-x64 node-v12.18.4
@salesforce/plugin-functions/0.0.5 darwin-x64 node-v12.18.4
$ sfdx --help [COMMAND]
USAGE
$ sfdx COMMAND
Expand Down Expand Up @@ -69,12 +69,12 @@ OPTIONS
-o, --connected-org=connected-org username or alias for the org that the compute environment should be connected to
EXAMPLES
$ sf env create compute
$ sf env create compute --setalias my-compute-environment
$ sf env create compute --connected-org my-scratch-org
$ sfdx env:create:compute
$ sfdx env:create:compute --setalias my-compute-environment
$ sfdx env:create:compute --connected-org my-scratch-org
```

_See code: [src/commands/env/create/compute.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/create/compute.ts)_
_See code: [src/commands/env/create/compute.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/create/compute.ts)_

## `sfdx env:delete`

Expand All @@ -89,11 +89,11 @@ OPTIONS
-e, --environment=environment (required) environment name or alias
EXAMPLES
$ sf env delete --environment=billingApp-Scratch1
$ sf env delete --environment=billingApp-Scratch1 --confirm=billingApp-Scratch1
$ sfdx env:delete --environment=billingApp-Scratch1
$ sfdx env:delete --environment=billingApp-Scratch1 --confirm=billingApp-Scratch1
```

_See code: [src/commands/env/delete.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/delete.ts)_
_See code: [src/commands/env/delete.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/delete.ts)_

## `sfdx env:list`

Expand All @@ -111,12 +111,12 @@ OPTIONS
connected compute envs
EXAMPLES
$ sf env list
$ sf env list --all
$ sf env list --environment-type org --environment-type compute
$ sfdx env:list
$ sfdx env:list --all
$ sfdx env:list --environment-type org --environment-type compute
```

_See code: [src/commands/env/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/list.ts)_
_See code: [src/commands/env/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/list.ts)_

## `sfdx env:log:tail`

Expand All @@ -130,10 +130,10 @@ OPTIONS
-e, --environment=environment (required) environment name to retrieve logs
EXAMPLE
sf env log tail --environment=billingApp-Scratch1
sfdx env:log:tail --environment=billingApp-Scratch1
```

_See code: [src/commands/env/log/tail.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/log/tail.ts)_
_See code: [src/commands/env/log/tail.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/log/tail.ts)_

## `sfdx env:logdrain:add`

Expand All @@ -148,10 +148,10 @@ OPTIONS
-u, --url=url (required) endpoint that will receive sent logs
EXAMPLE
$ sf env logdrain add --environment=billingApp-Sandbox --url=https://example.com/drain
$ sfdx env:logdrain:add --environment=billingApp-Sandbox --url=https://example.com/drain
```

_See code: [src/commands/env/logdrain/add.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/logdrain/add.ts)_
_See code: [src/commands/env/logdrain/add.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/logdrain/add.ts)_

## `sfdx env:logdrain:list`

Expand All @@ -166,10 +166,10 @@ OPTIONS
--json output result in json
EXAMPLE
$ sf env logdrain list --environment=billingApp-Sandbox
$ sfdx env:logdrain:list --environment=billingApp-Sandbox
```

_See code: [src/commands/env/logdrain/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/logdrain/list.ts)_
_See code: [src/commands/env/logdrain/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/logdrain/list.ts)_

## `sfdx env:logdrain:remove`

Expand All @@ -184,10 +184,10 @@ OPTIONS
-u, --url=url (required) logdrain url to remove
EXAMPLE
$ sf env logdrain remove --environment=billingApp-Sandbox --url=syslog://syslog-a.logdna.com:11137
$ sfdx env:logdrain:remove --environment=billingApp-Sandbox --url=syslog://syslog-a.logdna.com:11137
```

_See code: [src/commands/env/logdrain/remove.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/logdrain/remove.ts)_
_See code: [src/commands/env/logdrain/remove.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/logdrain/remove.ts)_

## `sfdx env:var:get KEY`

Expand All @@ -201,10 +201,10 @@ OPTIONS
--environment=environment (required)
EXAMPLE
$ sf env var get foo --environment=my-environment
$ sfdx env:var:get foo --environment=my-environment
```

_See code: [src/commands/env/var/get.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/var/get.ts)_
_See code: [src/commands/env/var/get.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/get.ts)_

## `sfdx env:var:list`

Expand All @@ -218,10 +218,10 @@ OPTIONS
--environment=environment (required)
EXAMPLE
$ sf env var list --environment=my-environment
$ sfdx env:var:list --environment=my-environment
```

_See code: [src/commands/env/var/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/var/list.ts)_
_See code: [src/commands/env/var/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/list.ts)_

## `sfdx env:var:set`

Expand All @@ -235,10 +235,10 @@ OPTIONS
--environment=environment (required)
EXAMPLE
$ sf env var set foo=bar --environment=my-environment
$ sfdx env:var:set foo=bar --environment=my-environment
```

_See code: [src/commands/env/var/set.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/var/set.ts)_
_See code: [src/commands/env/var/set.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/set.ts)_

## `sfdx env:var:unset`

Expand All @@ -252,10 +252,10 @@ OPTIONS
--environment=environment (required)
EXAMPLE
$ sf env var unset foo --environment=my-environment
$ sfdx env:var:unset foo --environment=my-environment
```

_See code: [src/commands/env/var/unset.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/env/var/unset.ts)_
_See code: [src/commands/env/var/unset.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/unset.ts)_

## `sfdx generate:function`

Expand All @@ -276,7 +276,7 @@ EXAMPLE
$ sfdx evergreen:function:create MyFunction --language=javascript
```

_See code: [src/commands/generate/function.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/generate/function.ts)_
_See code: [src/commands/generate/function.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/generate/function.ts)_

## `sfdx generate:project`

Expand All @@ -288,7 +288,7 @@ OPTIONS
-n, --name=name (required) name of the generated project
```

_See code: [src/commands/generate/project.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/generate/project.ts)_
_See code: [src/commands/generate/project.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/generate/project.ts)_

## `sfdx login:functions`

Expand All @@ -299,10 +299,10 @@ USAGE
$ sfdx login:functions
EXAMPLE
$ sf login functions
$ sfdx login:functions
```

_See code: [src/commands/login/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/login/functions.ts)_
_See code: [src/commands/login/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/login/functions.ts)_

## `sfdx project:deploy:functions`

Expand All @@ -313,9 +313,9 @@ USAGE
OPTIONS
-b, --branch=branch deploy the latest commit from a branch different from the currently active branch
-o, --connected-org=connected-org (required) deployment org username or alias
-v, --verbose show all deploy output
-q, --quiet limit the amount of output displayed from the deploy process
--force ignore warnings and overwrite remote repository (not allowed in production)
```

_See code: [src/commands/project/deploy/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.4/src/commands/project/deploy/functions.ts)_
_See code: [src/commands/project/deploy/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/project/deploy/functions.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-functions",
"description": "Functions plugin for the SF CLI",
"version": "0.0.4",
"version": "0.0.5",
"author": "[email protected]",
"bin": {
"functions": "./bin/run"
Expand Down

0 comments on commit 19e1262

Please sign in to comment.