Skip to content

Commit 84ffccb

Browse files
committed
docs: serve the quick start page at /quick-start
1 parent 0e9af1b commit 84ffccb

11 files changed

Lines changed: 12 additions & 7 deletions

File tree

docs/01_introduction/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Whatever you build, the Apify SDK doesn't lock you into a particular framework.
4848

4949
## Quick start
5050

51-
To create and run Actors using Apify Console, check out [Apify Console documentation](https://docs.apify.com/platform/console). For creating and running Python Actors locally, refer to the [quick start guide](./introduction/quick-start).
51+
To create and run Actors using Apify Console, check out [Apify Console documentation](https://docs.apify.com/platform/console). For creating and running Python Actors locally, refer to the [quick start guide](./quick-start).
5252

5353
Explore the Guides section in the sidebar for a deeper understanding of the SDK's features and best practices.
5454

docs/01_introduction/quick-start.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
id: quick-start
33
title: Quick start
4+
slug: /quick-start
45
description: Get started with the Apify SDK for Python by creating your first Actor and learning the basics.
56
---
67

website/versioned_docs/version-0.2/01-introduction/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you're new to Apify, learn [what is Apify](https://docs.apify.com/platform/ab
3333

3434
## Quick start
3535

36-
To create and run Actors through Apify Console, see the [Console documentation](https://docs.apify.com/academy/getting-started/creating-actors#choose-your-template). For creating and running Python Actors locally, refer to the [quick start guide](./introduction/quick-start).
36+
To create and run Actors through Apify Console, see the [Console documentation](https://docs.apify.com/academy/getting-started/creating-actors#choose-your-template). For creating and running Python Actors locally, refer to the [quick start guide](./quick-start).
3737

3838
## Installation
3939

website/versioned_docs/version-0.2/01-introduction/quick-start.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
id: quick-start
33
title: Quick start
4+
slug: /quick-start
45
sidebar_label: Quick start
56
description: 'Get started with the Apify SDK for Python by creating your first Actor and learning the basics.'
67
---

website/versioned_docs/version-1.7/01-introduction/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you're new to Apify, learn [what is Apify](https://docs.apify.com/platform/ab
2626

2727
## Quick start
2828

29-
To create and run Actors through Apify Console, see the [Console documentation](https://docs.apify.com/academy/getting-started/creating-actors#choose-your-template). For creating and running Python Actors locally, refer to the [quick start guide](./introduction/quick-start).
29+
To create and run Actors through Apify Console, see the [Console documentation](https://docs.apify.com/academy/getting-started/creating-actors#choose-your-template). For creating and running Python Actors locally, refer to the [quick start guide](./quick-start).
3030

3131
Explore the Guides section in the sidebar for a deeper understanding of the SDK's features and best practices.
3232

website/versioned_docs/version-1.7/01-introduction/quick-start.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
id: quick-start
33
title: Quick start
4+
slug: /quick-start
45
sidebar_label: Quick start
56
description: 'Get started with the Apify SDK for Python by creating your first Actor and learning the basics.'
67
---

website/versioned_docs/version-1.7/02-guides/01-requests-and-httpx.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The [`requests`](https://requests.readthedocs.io) library is one of the most pop
1616

1717
To use it in your Actors, no special configuration is needed.
1818
Just put `requests` in your `requirements.txt` file,
19-
[reinstall dependencies](../introduction/quick-start#adding-dependencies) if you're running the Actor locally,
19+
[reinstall dependencies](../quick-start#adding-dependencies) if you're running the Actor locally,
2020
and you're good to go.
2121

2222
```python title="src/main.py"
@@ -62,7 +62,7 @@ making it ideal for large-scale, parallel web scraping.
6262

6363
To use it in your Actors, no special configuration is needed.
6464
Just put `httpx` in your `requirements.txt` file,
65-
[reinstall dependencies](../introduction/quick-start#adding-dependencies) if you're running the Actor locally,
65+
[reinstall dependencies](../quick-start#adding-dependencies) if you're running the Actor locally,
6666
and you're good to go.
6767

6868
```python title="src/main.py"

website/versioned_docs/version-2.7/01_introduction/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you're new to Apify, refer to the Apify platform documentation to learn [what
2626

2727
## Quick start
2828

29-
To create and run Actors using Apify Console, check out [Apify Console documentation](https://docs.apify.com/platform/console). For creating and running Python Actors locally, refer to the [quick start guide](./introduction/quick-start).
29+
To create and run Actors using Apify Console, check out [Apify Console documentation](https://docs.apify.com/platform/console). For creating and running Python Actors locally, refer to the [quick start guide](./quick-start).
3030

3131
Explore the Guides section in the sidebar for a deeper understanding of the SDK's features and best practices.
3232

website/versioned_docs/version-2.7/01_introduction/quick-start.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
id: quick-start
33
title: Quick start
4+
slug: /quick-start
45
sidebar_label: Quick start
56
description: 'Get started with the Apify SDK for Python by creating your first Actor and learning the basics.'
67
---

website/versioned_docs/version-3.4/01_introduction/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Whatever you build, the Apify SDK doesn't lock you into a particular framework.
4848

4949
## Quick start
5050

51-
To create and run Actors using Apify Console, check out [Apify Console documentation](https://docs.apify.com/platform/console). For creating and running Python Actors locally, refer to the [quick start guide](./introduction/quick-start).
51+
To create and run Actors using Apify Console, check out [Apify Console documentation](https://docs.apify.com/platform/console). For creating and running Python Actors locally, refer to the [quick start guide](./quick-start).
5252

5353
Explore the Guides section in the sidebar for a deeper understanding of the SDK's features and best practices.
5454

0 commit comments

Comments
 (0)