2024-04-21 10:56:30 -07:00
|
|
|
# ===== Required ENVS ======
|
|
|
|
|
NUM_WORKERS_PER_QUEUE=8
|
|
|
|
|
PORT=3002
|
|
|
|
|
HOST=0.0.0.0
|
|
|
|
|
REDIS_URL=redis://localhost:6379
|
2024-07-17 16:22:04 -04:00
|
|
|
REDIS_RATE_LIMIT_URL=redis://localhost:6379
|
2024-06-01 19:03:16 +10:00
|
|
|
PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/html
|
2024-04-21 10:56:30 -07:00
|
|
|
|
|
|
|
|
## To turn on DB authentication, you need to set up supabase.
|
|
|
|
|
USE_DB_AUTHENTICATION=true
|
2024-04-20 19:53:27 -07:00
|
|
|
|
2024-04-21 10:56:30 -07:00
|
|
|
# ===== Optional ENVS ======
|
|
|
|
|
|
|
|
|
|
# Supabase Setup (used to support DB authentication, advanced logging, etc.)
|
|
|
|
|
SUPABASE_ANON_TOKEN=
|
|
|
|
|
SUPABASE_URL=
|
|
|
|
|
SUPABASE_SERVICE_TOKEN=
|
2024-04-20 19:53:27 -07:00
|
|
|
|
2024-04-21 10:56:30 -07:00
|
|
|
# Other Optionals
|
|
|
|
|
TEST_API_KEY= # use if you've set up authentication and want to test with a real API key
|
2024-05-17 15:37:47 -03:00
|
|
|
RATE_LIMIT_TEST_API_KEY_SCRAPE= # set if you'd like to test the scraping rate limit
|
|
|
|
|
RATE_LIMIT_TEST_API_KEY_CRAWL= # set if you'd like to test the crawling rate limit
|
2024-04-21 10:56:30 -07:00
|
|
|
SCRAPING_BEE_API_KEY= #Set if you'd like to use scraping Be to handle JS blocking
|
|
|
|
|
OPENAI_API_KEY= # add for LLM dependednt features (image alt generation, etc.)
|
2024-06-03 21:28:25 +02:00
|
|
|
BULL_AUTH_KEY= @
|
2024-04-21 10:56:30 -07:00
|
|
|
LOGTAIL_KEY= # Use if you're configuring basic logging with logtail
|
2024-04-23 16:45:06 -07:00
|
|
|
LLAMAPARSE_API_KEY= #Set if you have a llamaparse key you'd like to use to parse pdfs
|
2024-04-23 16:52:40 -07:00
|
|
|
SERPER_API_KEY= #Set if you have a serper key you'd like to use as a search api
|
|
|
|
|
SLACK_WEBHOOK_URL= # set if you'd like to send slack server health status messages
|
2024-05-02 15:30:22 -04:00
|
|
|
POSTHOG_API_KEY= # set if you'd like to send posthog events like job logs
|
|
|
|
|
POSTHOG_HOST= # set if you'd like to send posthog events like job logs
|
|
|
|
|
|
2024-05-14 18:08:31 -03:00
|
|
|
STRIPE_PRICE_ID_STANDARD=
|
|
|
|
|
STRIPE_PRICE_ID_SCALE=
|
2024-05-30 14:31:36 -07:00
|
|
|
STRIPE_PRICE_ID_STARTER=
|
|
|
|
|
STRIPE_PRICE_ID_HOBBY=
|
|
|
|
|
STRIPE_PRICE_ID_HOBBY_YEARLY=
|
|
|
|
|
STRIPE_PRICE_ID_STANDARD_NEW=
|
|
|
|
|
STRIPE_PRICE_ID_STANDARD_NEW_YEARLY=
|
|
|
|
|
STRIPE_PRICE_ID_GROWTH=
|
|
|
|
|
STRIPE_PRICE_ID_GROWTH_YEARLY=
|
2024-05-20 13:36:51 -07:00
|
|
|
|
|
|
|
|
HYPERDX_API_KEY=
|
2024-05-21 18:34:23 -07:00
|
|
|
HDX_NODE_BETA_MODE=1
|
|
|
|
|
|
2024-05-24 17:41:34 +02:00
|
|
|
FIRE_ENGINE_BETA_URL= # set if you'd like to use the fire engine closed beta
|
|
|
|
|
|
2024-05-24 17:45:59 +02:00
|
|
|
# Proxy Settings for Playwright (Alternative you can can use a proxy service like oxylabs, which rotates IPs for you on every request)
|
2024-05-24 17:41:34 +02:00
|
|
|
PROXY_SERVER=
|
|
|
|
|
PROXY_USERNAME=
|
|
|
|
|
PROXY_PASSWORD=
|
|
|
|
|
# set if you'd like to block media requests to save proxy bandwidth
|
2024-06-04 19:55:07 +02:00
|
|
|
BLOCK_MEDIA=
|
|
|
|
|
|
|
|
|
|
# Set this to the URL of your webhook when using the self-hosted version of FireCrawl
|
2024-06-05 13:20:26 -07:00
|
|
|
SELF_HOSTED_WEBHOOK_URL=
|
|
|
|
|
|
|
|
|
|
# Resend API Key for transactional emails
|
|
|
|
|
RESEND_API_KEY=
|
2024-07-23 17:30:46 -03:00
|
|
|
|
|
|
|
|
# LOGGING_LEVEL determines the verbosity of logs that the system will output.
|
|
|
|
|
# Available levels are:
|
|
|
|
|
# NONE - No logs will be output.
|
|
|
|
|
# ERROR - For logging error messages that indicate a failure in a specific operation.
|
|
|
|
|
# WARN - For logging potentially harmful situations that are not necessarily errors.
|
|
|
|
|
# INFO - For logging informational messages that highlight the progress of the application.
|
|
|
|
|
# DEBUG - For logging detailed information on the flow through the system, primarily used for debugging.
|
|
|
|
|
# TRACE - For logging more detailed information than the DEBUG level.
|
|
|
|
|
# Set LOGGING_LEVEL to one of the above options to control logging output.
|
|
|
|
|
LOGGING_LEVEL=INFO
|