firecrawl/SELF_HOST.md

23 lines
636 B
Markdown
Raw Normal View History

2024-04-15 21:01:47 +00:00
# Self-hosting Firecrawl
## Getting Started
First, clone this repository and copy the example env file from api folder `.env.example` to `.env`.
2024-05-05 16:03:42 +00:00
```bash
git clone https://github.com/mendableai/firecrawl.git
cd firecrawl
cp ./apps/api/.env.example ./.env
2024-05-05 16:03:42 +00:00
```
2024-04-15 21:01:47 +00:00
For running the simplest version of FireCrawl, edit the `USE_DB_AUTHENTICATION` on `.env` to not use the database authentication.
```yml
2024-05-05 16:03:42 +00:00
USE_DB_AUTHENTICATION=false
```
Once that's complete, you can simply run the following commands to get started:
```bash
docker compose up
```
This will run a local instance of Firecrawl which can be accessed at `http://localhost:3002`.