Self-hosting the OSS Version of Firecrawl
I tried self-hosting the OSS version of Firecrawl, so I’ll introduce how to do it.
gh repo clone mendableai/firecrawl && cd firecrawl/
git checkout refs/tags/v1.0.0
.env
cp apps/api/.env.example .env
10c10
< USE_DB_AUTHENTICATION=true
---
> USE_DB_AUTHENTICATION=false
docker compose up -d
I confirmed that the following URLs can be opened:
curl -X POST http://localhost:3002/v1/crawl \
-H 'Content-Type: application/json' \
-d '{
"url": "https://docs.firecrawl.dev"
}'
curl -X POST http://localhost:3002/v1/scrape \
-H 'Content-Type: application/json' \
-d '{
"url": "https://docs.firecrawl.dev"
}'
That’s all from the Gemba about trying to self-host the OSS version of Firecrawl.