From c7b5f01c76158daae8dec454ec9a83e3ed05ebde Mon Sep 17 00:00:00 2001 From: stepskop Date: Mon, 21 Jul 2025 17:34:50 +0200 Subject: [PATCH 1/5] chore: add env var docs --- .../development/programming_interface/environment_variables.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/platform/actors/development/programming_interface/environment_variables.md b/sources/platform/actors/development/programming_interface/environment_variables.md index 9c5db6556b..86379b63d8 100644 --- a/sources/platform/actors/development/programming_interface/environment_variables.md +++ b/sources/platform/actors/development/programming_interface/environment_variables.md @@ -62,6 +62,7 @@ Here's a table of key system environment variables: | `ACTOR_TIMEOUT_AT` | Date when the Actor will time out. | | `APIFY_TOKEN` | API token of the user who started the Actor. | | `APIFY_USER_ID` | ID of the user who started the Actor. May differ from the Actor owner. | +| `APIFY_USER_IS_PAYING` | If **1**, the user calling the Actor is paying user | | `ACTOR_WEB_SERVER_PORT` | TCP port for the Actor to start an HTTP server on. This server can be used to receive external messages or expose monitoring and control interfaces. The server also receives messages from the [Actor Standby](/platform/actors/development/programming-interface/standby) mode. | | `ACTOR_WEB_SERVER_URL` | Unique public URL for accessing the Actor run web server from the outside world. | | `APIFY_API_PUBLIC_BASE_URL` | Public URL of the Apify API. May be used to interact with the platform programmatically. Typically set to `api.apify.com`. | From 902663b2791fe14bb9d4bb320e92d47ea1eba7a8 Mon Sep 17 00:00:00 2001 From: stepskop Date: Mon, 21 Jul 2025 17:39:37 +0200 Subject: [PATCH 2/5] fix: add missing period --- .../development/programming_interface/environment_variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/actors/development/programming_interface/environment_variables.md b/sources/platform/actors/development/programming_interface/environment_variables.md index 86379b63d8..037be20140 100644 --- a/sources/platform/actors/development/programming_interface/environment_variables.md +++ b/sources/platform/actors/development/programming_interface/environment_variables.md @@ -62,7 +62,7 @@ Here's a table of key system environment variables: | `ACTOR_TIMEOUT_AT` | Date when the Actor will time out. | | `APIFY_TOKEN` | API token of the user who started the Actor. | | `APIFY_USER_ID` | ID of the user who started the Actor. May differ from the Actor owner. | -| `APIFY_USER_IS_PAYING` | If **1**, the user calling the Actor is paying user | +| `APIFY_USER_IS_PAYING` | If **1**, the user calling the Actor is paying user. | | `ACTOR_WEB_SERVER_PORT` | TCP port for the Actor to start an HTTP server on. This server can be used to receive external messages or expose monitoring and control interfaces. The server also receives messages from the [Actor Standby](/platform/actors/development/programming-interface/standby) mode. | | `ACTOR_WEB_SERVER_URL` | Unique public URL for accessing the Actor run web server from the outside world. | | `APIFY_API_PUBLIC_BASE_URL` | Public URL of the Apify API. May be used to interact with the platform programmatically. Typically set to `api.apify.com`. | From 89a13016dc9d081bb6d0ce0f6cfd54bbe820443c Mon Sep 17 00:00:00 2001 From: stepskop Date: Mon, 21 Jul 2025 17:41:53 +0200 Subject: [PATCH 3/5] chore: improve styling --- .../development/programming_interface/environment_variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/actors/development/programming_interface/environment_variables.md b/sources/platform/actors/development/programming_interface/environment_variables.md index 037be20140..2a1913b1c4 100644 --- a/sources/platform/actors/development/programming_interface/environment_variables.md +++ b/sources/platform/actors/development/programming_interface/environment_variables.md @@ -62,7 +62,7 @@ Here's a table of key system environment variables: | `ACTOR_TIMEOUT_AT` | Date when the Actor will time out. | | `APIFY_TOKEN` | API token of the user who started the Actor. | | `APIFY_USER_ID` | ID of the user who started the Actor. May differ from the Actor owner. | -| `APIFY_USER_IS_PAYING` | If **1**, the user calling the Actor is paying user. | +| `APIFY_USER_IS_PAYING` | If set to `1`, the user calling the Actor is paying user. | | `ACTOR_WEB_SERVER_PORT` | TCP port for the Actor to start an HTTP server on. This server can be used to receive external messages or expose monitoring and control interfaces. The server also receives messages from the [Actor Standby](/platform/actors/development/programming-interface/standby) mode. | | `ACTOR_WEB_SERVER_URL` | Unique public URL for accessing the Actor run web server from the outside world. | | `APIFY_API_PUBLIC_BASE_URL` | Public URL of the Apify API. May be used to interact with the platform programmatically. Typically set to `api.apify.com`. | From c44923d4ce29350a98346df596759271593a66ee Mon Sep 17 00:00:00 2001 From: stepskop Date: Mon, 21 Jul 2025 18:38:07 +0200 Subject: [PATCH 4/5] fix: grammar --- .../development/programming_interface/environment_variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/actors/development/programming_interface/environment_variables.md b/sources/platform/actors/development/programming_interface/environment_variables.md index 2a1913b1c4..0e60a3764c 100644 --- a/sources/platform/actors/development/programming_interface/environment_variables.md +++ b/sources/platform/actors/development/programming_interface/environment_variables.md @@ -62,7 +62,7 @@ Here's a table of key system environment variables: | `ACTOR_TIMEOUT_AT` | Date when the Actor will time out. | | `APIFY_TOKEN` | API token of the user who started the Actor. | | `APIFY_USER_ID` | ID of the user who started the Actor. May differ from the Actor owner. | -| `APIFY_USER_IS_PAYING` | If set to `1`, the user calling the Actor is paying user. | +| `APIFY_USER_IS_PAYING` | If set to `1`, the user calling the Actor is a paying user. | | `ACTOR_WEB_SERVER_PORT` | TCP port for the Actor to start an HTTP server on. This server can be used to receive external messages or expose monitoring and control interfaces. The server also receives messages from the [Actor Standby](/platform/actors/development/programming-interface/standby) mode. | | `ACTOR_WEB_SERVER_URL` | Unique public URL for accessing the Actor run web server from the outside world. | | `APIFY_API_PUBLIC_BASE_URL` | Public URL of the Apify API. May be used to interact with the platform programmatically. Typically set to `api.apify.com`. | From db508e48a8424cc0cf3fd81dd7b36c402a1424d9 Mon Sep 17 00:00:00 2001 From: stepskop Date: Tue, 22 Jul 2025 15:47:36 +0200 Subject: [PATCH 5/5] chore: copy --- .../development/programming_interface/environment_variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/platform/actors/development/programming_interface/environment_variables.md b/sources/platform/actors/development/programming_interface/environment_variables.md index 0e60a3764c..97b2d5836e 100644 --- a/sources/platform/actors/development/programming_interface/environment_variables.md +++ b/sources/platform/actors/development/programming_interface/environment_variables.md @@ -62,7 +62,7 @@ Here's a table of key system environment variables: | `ACTOR_TIMEOUT_AT` | Date when the Actor will time out. | | `APIFY_TOKEN` | API token of the user who started the Actor. | | `APIFY_USER_ID` | ID of the user who started the Actor. May differ from the Actor owner. | -| `APIFY_USER_IS_PAYING` | If set to `1`, the user calling the Actor is a paying user. | +| `APIFY_USER_IS_PAYING` | If it is `1`, it means that the user who started the Actor is a paying user. | | `ACTOR_WEB_SERVER_PORT` | TCP port for the Actor to start an HTTP server on. This server can be used to receive external messages or expose monitoring and control interfaces. The server also receives messages from the [Actor Standby](/platform/actors/development/programming-interface/standby) mode. | | `ACTOR_WEB_SERVER_URL` | Unique public URL for accessing the Actor run web server from the outside world. | | `APIFY_API_PUBLIC_BASE_URL` | Public URL of the Apify API. May be used to interact with the platform programmatically. Typically set to `api.apify.com`. |