Skip to content

Commit c776807

Browse files
authored
Merge branch 'master' into readme-consolidation
2 parents 381bab8 + c4f9711 commit c776807

File tree

273 files changed

+18019
-19051
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+18019
-19051
lines changed
Lines changed: 83 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,90 @@
1-
apify(?=-\w+)
1+
Apify(?=-\w+)
2+
@apify\.com
3+
\bApify\b
24
Actor(s)?
5+
SDK(s)
6+
[Ss]torages
7+
Crawlee
8+
[Aa]utoscaling
9+
CU
10+
311
booleans
4-
Docusaurus
512
env
13+
npm
14+
serverless
15+
[Bb]oolean
16+
node_modules
17+
[Rr]egex
18+
[Mm]onorepo
19+
[Gg]ist
20+
SDK
21+
Dockerfile
22+
Docker's
23+
24+
Docusaurus
625
navbar
726
nginx
827
npm
928
camelCase
29+
30+
:::caution
31+
:::note
32+
:::info
33+
:::tip
34+
:::warning
35+
36+
maxWidth
37+
startUrls
38+
39+
PDFs
40+
dataset's
41+
gif
42+
Gzip
43+
44+
API's
45+
APIs
46+
webhook's
47+
idempotency
48+
backoff
49+
50+
Authy
51+
reCaptcha
52+
OAuth
53+
untrusted
54+
unencrypted
55+
proxied
56+
57+
LLM
58+
embedder
59+
chatbot
60+
[Ll]angchain
61+
62+
[Kk]eboola
63+
[Aa]irbyte
64+
[Qq]drant
65+
[Pp]inecone
66+
[Mm]ilvus
67+
[Zz]illiz
68+
llama_index
69+
[Ff]lowise
70+
71+
exploitability
72+
[Ww]hitepaper
73+
[Cc]ron
74+
scalably
75+
metamorph
76+
hostname
77+
IPs
78+
unscoped
79+
multistep
80+
[Aa]utogenerated
81+
preconfigured
82+
[Dd]atacenter
83+
84+
[Ww]ikipedia
85+
[Zz]apier
86+
[Tt]rello
87+
[Pp]refill
88+
89+
90+
[Mm]ultiselect

.github/workflows/lychee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Run Lychee Link Checker
3838
id: lychee
39-
uses: lycheeverse/lychee-action@v2.1.0
39+
uses: lycheeverse/lychee-action@v2.2.0
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
4242
with:

.github/workflows/typos-check.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/vale.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ jobs:
3232
fail_on_error: true
3333
vale_flags: '--minAlertLevel=error'
3434
reporter: github-pr-annotations
35+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ tsconfig.tsbuildinfo
2121
sources/api/*
2222
!sources/api/sidebars.js
2323
apify-api.yaml
24+
apify-docs-theme/package-lock.json

.redocly.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ plugins:
2727
decorators:
2828
apify/legacy-doc-url-decorator: on
2929
apify/client-references-links-decorator: on
30+
apify/code-samples-decorator: on

.vale.ini

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
StylesPath = .github/styles
2+
MinAlertLevel = warning
3+
IgnoredScopes = code, tt, table, tr, td
4+
5+
Vocab = Docs
6+
7+
Packages = write-good, Microsoft
8+
9+
[formats]
10+
mdx = md
11+
12+
[*.md]
13+
BasedOnStyles = Vale, Apify, write-good, Microsoft
14+
# Ignore URLs, HTML/XML tags starting with capital letter, lines containing = sign, http & https URL ending with ] or ) & email addresses
15+
TokenIgnores = (<\/?[A-Z].+>), ([^\n]+=[^\n]*), (\[[^\]]+\]\([^\)]+\)), ([^\n]+@[^\n]+\.[^\n]), ({[^}]*}), (`[^`]*`), (`\w+`)
16+
Vale.Spelling = YES
17+
18+
19+
# Disabling rules (NO)
20+
Microsoft.Contractions = NO
21+
Microsoft.Foreign = NO
22+
Microsoft.We = NO
23+
Microsoft.Quotes = NO
24+
Microsoft.ThereIs = NO
25+
Microsoft.Auto = NO
26+
Microsoft.URLFormat = NO
27+
Microsoft.GeneralURL = NO
28+
Microsoft.RangeFormat = NO

_typos.toml

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { ApifyClient } from 'apify-client';
2+
3+
const apifyClient = new ApifyClient({
4+
token: '<TOKEN>',
5+
});
6+
const { items } = await apifyClient
7+
.actor('<ACTOR ID>')
8+
.builds()
9+
.list();
10+
11+
console.log(items);
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { ApifyClient } from 'apify-client';
2+
3+
const apifyClient = new ApifyClient({
4+
token: '<TOKEN>',
5+
});
6+
const build = await apifyClient
7+
.actor('<ACTOR ID>')
8+
.build('0.0');
9+
10+
console.log(build);

0 commit comments

Comments
 (0)