### Install Dependencies and Start Local Development Server Source: https://github.com/mendableai/llmstxt-generator/blob/main/README.md These commands are used to install the project's dependencies and then start the development server, enabling local testing and development of the llms.txt generator. ```bash npm install npm run dev ``` -------------------------------- ### Generate LLMs.txt via GET API Endpoint Source: https://github.com/mendableai/llmstxt-generator/blob/main/README.md This API endpoint allows users to generate llms.txt files by providing a URL. Note that the process involves web crawling and LLM operations, which may take several minutes to complete. ```APIDOC GET https://llmstxt.firecrawl.dev/[YOUR_URL_HERE] ``` -------------------------------- ### Configure Environment Variables for Local Development Source: https://github.com/mendableai/llmstxt-generator/blob/main/README.md Before running the project locally, create a .env file and populate it with the necessary API keys and URLs for Firecrawl, Supabase, and OpenAI services. ```plaintext FIRECRAWL_API_KEY= SUPABASE_URL= SUPABASE_KEY= OPENAI_API_KEY= ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.