We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6254386 commit be92b69Copy full SHA for be92b69
docusaurus/docs/getting-started.md
@@ -1,4 +1,27 @@
1
----
+---<!DOCTYPE html>
2
+<html>
3
+<head>
4
+ <title>FMCSA Dashboard</title>
5
+</head>
6
+
7
+<body>
8
+<h1>🚛 FMCSA Scraper Dashboard</h1>
9
10
+<button onclick="startScrape()">Start Scraper</button>
11
12
+<p id="status">Idle</p>
13
14
+<script>
15
+async function startScrape() {
16
+ document.getElementById("status").innerText =
17
+ "Scraping Started...";
18
19
+ await fetch("/api/scrape");
20
+}
21
+</script>
22
23
+</body>
24
+</html>
25
id: getting-started
26
title: Getting Started
27
---
0 commit comments