Skip to content

Commit 33b0588

Browse files
Fix lint errors
1 parent be1c2cf commit 33b0588

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@ The CLI will ask you to:
4141
:::
4242

4343
The CLI will:
44+
4445
- Create a `your-actor-name` directory with boilerplate code
4546
- Install all project dependencies
4647

4748
Now, you can navigate to your new Actor directory:
49+
4850
```bash
4951
cd your-actor-name
5052
```
@@ -91,7 +93,7 @@ Each Actor accepts an `input object` that tells it what to do. The object uses J
9193
9294
:::info
9395
94-
To change the `INPUT.json`, edit the `input_schema.json` in the `.actor` folder first.
96+
To change the `INPUT.json`, edit the `input_schema.json` in the `.actor` folder first.
9597
9698
This JSON Schema validates input automatically (no error handling needed), powers the Actor's user interface, generates API docs, and enables smart integration with tools like Zapier or Make by auto-linking input fields.
9799
@@ -107,7 +109,7 @@ The Actor system provides two storage types for files and results: `key-value` s
107109
108110
The key-value store saves and reads files or data records. Key-value stores work well for screenshots, PDFs, or persisting Actor state as JSON files.
109111
110-
#### Dataset
112+
#### Dataset
111113
112114
The dataset stores a series of data objects from web scraping, crawling, or data processing jobs. You can export datasets to JSON, CSV, XML, RSS, Excel, or HTML formats.
113115

0 commit comments

Comments
 (0)