-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Meer Hamza edited this page May 19, 2025
·
3 revisions
-
Clone the repository:
git clone https://github.com/yourusername/amazon-bid-master.git cd amazon-bid-master -
Install dependencies:
npm install -
Set up environment variables: Create a
.envfile 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_keyNote: The AI services require the API keys to be set in the
.envfile. -
Start the development server:
npm run devThis will start:
- The backend server on http://localhost:4000
- The frontend development server on http://localhost:3000
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 -
Open your browser and navigate to
http://localhost:3000
- Node.js 18+
- npm or yarn