mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 19:58:08 +08:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
require("dotenv").config();
|
|
|
|
fetch(process.argv[2] + "/admin/" + process.env.BULL_AUTH_KEY + "/unpause", {
|
|
method: "POST"
|
|
}).then(async x => {
|
|
console.log(await x.text());
|
|
process.exit(0);
|
|
}).catch(e => {
|
|
console.error(e);
|
|
process.exit(1);
|
|
});
|