1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

firecrawlをWSL2+Docker(Desktop)環境にインストールする

Last updated at Posted at 2024-12-21

手順

WSL2のプロンプトより、リポジトリをクローンします

git clone https://github.com/mendableai/firecrawl.git

apps/apiの中の「.env.example」を「.env」にコピーして下記を設定します。

USE_DB_AUTHENTICATION=false
TEST_API_KEY= test

こちらの設定は、テスト用のため、実際にはUSE_DB_AUTHENTICATION=trueと設定して認証を利用するようにしましょう。

TEST_API_KEY= testは外部サービスやプログラムよりAPIを利用するときに使用するAPIキーです。

プロジェクトのルートディレクトリに戻り、以下のコマンドでDockerコンテナをビルドし、バックグラウンドで起動します。

cd ../..
docker compose up -d --build

起動後にテストを実行します。

curl -X GET http://localhost:3002/test
Hello, world!

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?