apify-cli 0.13.0-beta.0 → 0.13.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/npm-shrinkwrap.json +452 -482
- package/package.json +3 -2
- package/src/commands/push.js +16 -2
package/README.md
CHANGED
|
@@ -139,7 +139,7 @@ This command can also be used to run other actors, for example:
|
|
|
139
139
|
apify call apify/hello-world
|
|
140
140
|
```
|
|
141
141
|
|
|
142
|
-
### So what's in this
|
|
142
|
+
### So what's in this .actor/actor.json file?
|
|
143
143
|
|
|
144
144
|
This file associates your local development project with an actor on the Apify platform.
|
|
145
145
|
It contains information such as actor name, version, build tag and environment variables.
|
|
@@ -186,7 +186,7 @@ You can define the schema of the items in your dataset under the `storages.datas
|
|
|
186
186
|
|
|
187
187
|
There are two options how you can set up environment variables for actors.
|
|
188
188
|
|
|
189
|
-
### Set up environment variables in
|
|
189
|
+
### Set up environment variables in .actor/actor.json
|
|
190
190
|
All keys from `env` will be set as environment variables into Apify platform after you push actor to Apify. Current values on Apify will be overridden.
|
|
191
191
|
```json
|
|
192
192
|
{
|
|
@@ -214,7 +214,7 @@ After setting up variables in the app, remove the `environmentVariables` from `.
|
|
|
214
214
|
```
|
|
215
215
|
|
|
216
216
|
|
|
217
|
-
#### How to set secret environment variables in
|
|
217
|
+
#### How to set secret environment variables in .actor/actor.json
|
|
218
218
|
|
|
219
219
|
CLI provides commands to manage secrets environment variables. Secrets are stored to the `~/.apify` directory.
|
|
220
220
|
You can add a new secret using the command:
|