Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions templates/cli-start/.actorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# .actorignore — files NOT included in `apify push` archives.
*.log
.env
.env.*
.idea/
.vscode/
.zed/
.DS_Store
.git/
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"$schema": "https://apify.com/schemas/v1/dataset.ide.json",
"actorSpecification": 1,
"fields": {
"title": "Pages",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title"
},
"url": {
"type": "string",
"format": "uri",
"title": "URL"
}
},
"required": [
"title",
"url"
]
},
"views": {
"overview": {
"title": "Overview",
"transformation": {
"fields": [
"title",
"url"
]
},
"display": {
"component": "table",
"properties": {
"title": {
"label": "Title",
"format": "text"
},
"url": {
"label": "URL",
"format": "link"
}
}
}
}
}
}
28 changes: 28 additions & 0 deletions templates/js-bootstrap-cheerio-crawler/.actorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .actorignore — files NOT included in `apify push` archives.
# Mirrors .dockerignore where the rationale is "don't ship to the platform",
# diverging only where Docker semantics need different contents.

# Build artifacts (Dockerfile rebuilds these inside the image)
dist/
build/
*.tsbuildinfo

# Dependencies (installed by the platform image)
node_modules/

# Local-development storage
storage/
apify_storage/
crawlee_storage/

# Logs / env / IDE / OS
*.log
.env
.env.*
.idea/
.vscode/
.zed/
.DS_Store

# Git history
.git/
25 changes: 23 additions & 2 deletions templates/js-crawlee-cheerio/.actor/dataset_schema.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
{
"$schema": "https://apify.com/schemas/v1/dataset.ide.json",
"actorSpecification": 1,
"fields": {},
"fields": {
"title": "Overview",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title"
},
"url": {
"type": "string",
"format": "uri",
"title": "URL"
}
},
"required": [
"title",
"url"
]
},
"views": {
"overview": {
"title": "Overview",
"transformation": {
"fields": ["title", "url"]
"fields": [
"title",
"url"
]
},
"display": {
"component": "table",
Expand Down
28 changes: 28 additions & 0 deletions templates/js-crawlee-cheerio/.actorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .actorignore — files NOT included in `apify push` archives.
# Mirrors .dockerignore where the rationale is "don't ship to the platform",
# diverging only where Docker semantics need different contents.

# Build artifacts (Dockerfile rebuilds these inside the image)
dist/
build/
*.tsbuildinfo

# Dependencies (installed by the platform image)
node_modules/

# Local-development storage
storage/
apify_storage/
crawlee_storage/

# Logs / env / IDE / OS
*.log
.env
.env.*
.idea/
.vscode/
.zed/
.DS_Store

# Git history
.git/
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
{
"$schema": "https://apify.com/schemas/v1/dataset.ide.json",
"actorSpecification": 1,
"fields": {},
"fields": {
"title": "Overview",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title"
},
"url": {
"type": "string",
"format": "uri",
"title": "URL"
}
},
"required": [
"title",
"url"
]
},
"views": {
"overview": {
"title": "Overview",
"transformation": {
"fields": ["title", "url"]
"fields": [
"title",
"url"
]
},
"display": {
"component": "table",
Expand Down
28 changes: 28 additions & 0 deletions templates/js-crawlee-playwright-camoufox/.actorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .actorignore — files NOT included in `apify push` archives.
# Mirrors .dockerignore where the rationale is "don't ship to the platform",
# diverging only where Docker semantics need different contents.

# Build artifacts (Dockerfile rebuilds these inside the image)
dist/
build/
*.tsbuildinfo

# Dependencies (installed by the platform image)
node_modules/

# Local-development storage
storage/
apify_storage/
crawlee_storage/

# Logs / env / IDE / OS
*.log
.env
.env.*
.idea/
.vscode/
.zed/
.DS_Store

# Git history
.git/
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
{
"$schema": "https://apify.com/schemas/v1/dataset.ide.json",
"actorSpecification": 1,
"fields": {},
"fields": {
"title": "Overview",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title"
},
"url": {
"type": "string",
"format": "uri",
"title": "URL"
}
},
"required": [
"title",
"url"
]
},
"views": {
"overview": {
"title": "Overview",
"transformation": {
"fields": ["title", "url"]
"fields": [
"title",
"url"
]
},
"display": {
"component": "table",
Expand Down
28 changes: 28 additions & 0 deletions templates/js-crawlee-playwright-chrome/.actorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .actorignore — files NOT included in `apify push` archives.
# Mirrors .dockerignore where the rationale is "don't ship to the platform",
# diverging only where Docker semantics need different contents.

# Build artifacts (Dockerfile rebuilds these inside the image)
dist/
build/
*.tsbuildinfo

# Dependencies (installed by the platform image)
node_modules/

# Local-development storage
storage/
apify_storage/
crawlee_storage/

# Logs / env / IDE / OS
*.log
.env
.env.*
.idea/
.vscode/
.zed/
.DS_Store

# Git history
.git/
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
{
"$schema": "https://apify.com/schemas/v1/dataset.ide.json",
"actorSpecification": 1,
"fields": {},
"fields": {
"title": "Overview",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title"
},
"url": {
"type": "string",
"format": "uri",
"title": "URL"
}
},
"required": [
"title",
"url"
]
},
"views": {
"overview": {
"title": "Overview",
"transformation": {
"fields": ["title", "url"]
"fields": [
"title",
"url"
]
},
"display": {
"component": "table",
Expand Down
28 changes: 28 additions & 0 deletions templates/js-crawlee-puppeteer-chrome/.actorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .actorignore — files NOT included in `apify push` archives.
# Mirrors .dockerignore where the rationale is "don't ship to the platform",
# diverging only where Docker semantics need different contents.

# Build artifacts (Dockerfile rebuilds these inside the image)
dist/
build/
*.tsbuildinfo

# Dependencies (installed by the platform image)
node_modules/

# Local-development storage
storage/
apify_storage/
crawlee_storage/

# Logs / env / IDE / OS
*.log
.env
.env.*
.idea/
.vscode/
.zed/
.DS_Store

# Git history
.git/
45 changes: 44 additions & 1 deletion templates/js-cypress/.actor/dataset_schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,50 @@
{
"$schema": "https://apify.com/schemas/v1/dataset.ide.json",
"actorSpecification": 1,
"fields": {},
"fields": {
"title": "Filtered output",
"type": "object",
"properties": {
"testSuiteTitle": {
"type": "string",
"title": "Test Suite Title"
},
"totalDuration": {
"type": "number",
"title": "Total Duration"
},
"totalFailed": {
"type": "number",
"title": "Total Failed"
},
"totalPassed": {
"type": "string",
"title": "Total Passed"
},
"totalPending": {
"type": "number",
"title": "Total Pending"
},
"totalSkipped": {
"type": "number",
"title": "Total Skipped"
},
"videoLink": {
"type": "string",
"format": "uri",
"title": "Video recording"
}
},
"required": [
"testSuiteTitle",
"totalDuration",
"totalFailed",
"totalPassed",
"totalPending",
"totalSkipped",
"videoLink"
]
},
"views": {
"overview": {
"title": "Filtered output",
Expand Down
Loading
Loading