Setup Guide β From Zero to Running in 5 Minutes Prerequisites (one-time, 10 mins if you have nothing) 1. Install Node.js Go to nodejs.org β download the LTS version β install it Open Terminal / PowerShell and verify: node -v should print something like v20.x.x 2. Install VS Code Go to code.visualstudio.com β download β install Open VS Code, press Ctrl+ ` to open the built-in terminal (you'll do everything from here) 3. Get your API keys Service Where to get it Cost Apify console.apify.com β Settings β Integrations β API token Free $5 credit on signup OpenAI platform.openai.com/api-keys β Create new key ~$1β2 for a full run Anthropic console.anthropic.com β API Keys β Create key ~$0.20 for calendar Setup Steps (5 minutes) Step 1 β Unzip the project Extract creator-dashboard.zip anywhere on your computer (e.g., Desktop β creator-dashboard folder) Step 2 β Open it in VS Code File β Open Folder β select the creator-dashboard folder Step 3 β Open the terminal inside VS Code Press Ctrl + `` `` ` (backtick key, top-left of keyboard) Step 4 β Install dependencies Paste this in the terminal and hit Enter: npm install Wait ~1 minute while it downloads packages. Step 5 β Create your config file In the terminal: cp .env.example .env.local Then in VS Code's file explorer on the left, click .env.local to open it. Fill in your values: APIFY_API_TOKEN=apify_api_xxxxxxxxxxxx β paste from Apify console OWN_INSTAGRAM_USERNAME=yourhandle β your Instagram, no @ COMPETITOR_HANDLES=handle1,handle2,handle3 β competitors, no @, comma separated OWN_REELS_LIMIT=40 OPENAI_API_KEY=sk-proj-xxxxxxxxxxxx β paste from OpenAI ANTHROPIC_API_KEY=sk-ant-xxxxxxxxxxxx β paste from Anthropic Save with Ctrl+S. Step 6 β Start the app npm run dev You'll see: β² Next.js 14.x.x - Local: http://localhost:3000 Step 7 β Open in your browser Go to http://localhost:3000 First Run (inside the app) Dashboard β Click "Scrape My Reels" β pulls and analyses your last 40 reels (~5β10 min)