summaryrefslogtreecommitdiff
path: root/docs/configuration/starting-url.md
diff options
context:
space:
mode:
authorPhilipp Tanlak <philipp.tanlak@gmail.com>2023-11-13 22:36:15 +0100
committerGitHub <noreply@github.com>2023-11-13 22:36:15 +0100
commit190056ee8d6a4eca61d92a79cc25aad645e69d4a (patch)
tree423cb3dfb7ca92e4c1c48c1070f553bbadc4d890 /docs/configuration/starting-url.md
parenteae10426cd805ecc0a0459b61639e48e6cd913ad (diff)
Move docs to flyscrape.com (#11)
Diffstat (limited to 'docs/configuration/starting-url.md')
-rw-r--r--docs/configuration/starting-url.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/configuration/starting-url.md b/docs/configuration/starting-url.md
deleted file mode 100644
index d5c0965..0000000
--- a/docs/configuration/starting-url.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Stating URL
-
-The `url` config option allows you to specify the initial URL at which the scraper should start its scraping process.
-
-When no value is provided, the scraper will not start and exit immediately.
-
-Example:
-
-```javascript
-export const config = {
- url: "http://example.com/",
- // ...
-};
-```