Skip to content

Commit 0d79316

Browse files
committed
further link fixes
1 parent c891d32 commit 0d79316

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

sources/academy/platform/deploying_your_code/deploying.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ One important thing to note is that you can use a `.gitignore` file to exclude f
5757
5858
## Deployed! {#deployed}
5959

60-
Great! Once you've pushed your Actor to the platform, you should see it in the list of Actors under the **Actors** tab. If you used `apify push`, you'll have access to the **multifile editor** (discussed [here](../getting_started/creating_actors.md)).
60+
Great! Once you've pushed your Actor to the platform, you should see it in the list of Actors under the **Actors** tab. If you used `apify push`, you'll have access to the **multifile editor** (discussed [here](/actors/development/quick-start/locally#deploy-to-the-apify-platform)).
6161

6262
![Deployed Actor on the Apify platform](./images/actor-page.jpg)
6363

sources/academy/platform/deploying_your_code/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import TabItem from '@theme/TabItem';
1515

1616
---
1717

18-
This section will discuss how to use your newfound knowledge of the Apify platform and Actors from the [**Getting started**](../getting_started/index.md) section to deploy your existing project's code to the Apify platform as an Actor.
18+
This section will discuss how to use your newfound knowledge of the Apify platform and Actors to deploy your existing project's code to the Apify platform as an Actor.
1919
Any program running in a Docker container can become an Apify Actor.
2020

2121
![The deployment workflow](../../images/deployment-workflow.png)

sources/academy/platform/deploying_your_code/inputs_outputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Cool! When we run `node index.js`, we see **20**.
8888

8989
### Accepting input without the Apify SDK
9090

91-
Alternatively, when writing in a language other than JavaScript, we can create our own `get_input()` function which utilizes the Apify API when the Actor is running on the platform. For this example, we are using the [Apify Client](../getting_started/apify_client.md) for Python to access the API.
91+
Alternatively, when writing in a language other than JavaScript, we can create our own `get_input()` function which utilizes the Apify API when the Actor is running on the platform. For this example, we are using the [Apify Client](platform/integrations/api/using-client-libraries) for Python to access the API.
9292

9393
```py
9494
# index.py

sources/platform/actors/development/quick_start/start_locally.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,7 @@ Once you're satisfied with your Actor, deploy it to the Apify platform to run it
170170

171171
This command uploads your Actor's code and configuration to the Apify platform. The CLI will create the Actor in your Apify account if it doesn't exist or update the existing one.
172172

173-
After pushing, you can find your Actor in Apify Console
174-
175-
under the Development section. From there, you can build it, configure its input, and run it just like an Actor created in the Web IDE.
173+
After pushing, you can find your Actor in Apify Console under the Development section. From there, you can build it, configure its input, and run it just like an Actor created in the Web IDE.
176174

177175
:::tip Actor monetization
178176

0 commit comments

Comments
 (0)