Skip to content

Getting Started

Meer Hamza edited this page May 19, 2025 · 3 revisions

Installation

  1. Clone the repository:

    git clone https://github.com/yourusername/amazon-bid-master.git
    cd amazon-bid-master
    
  2. Install dependencies:

    npm install
    
  3. Set up environment variables: Create a .env file in the root directory with the following variables:

    DATABASE_URL=your_database_url
    OPENAI_API_KEY=your_openai_api_key
    ANTHROPIC_API_KEY=your_anthropic_api_key
    GOOGLE_API_KEY=your_google_api_key
    

    Note: The AI services require the API keys to be set in the .env file.

  4. Start the development server:

    npm run dev
    

    This will start:

    You can also run them separately:

    # Run only the backend server
    npm run dev:server
    
    # Run only the frontend development server
    npm run dev:client
    
  5. Open your browser and navigate to http://localhost:3000

Prerequisites

  • Node.js 18+
  • npm or yarn

Clone this wiki locally