# Smartcar API Configuration # Get these from https://console.smartcar.com/ SMARTCAR_CLIENT_ID=your_client_id_here SMARTCAR_CLIENT_SECRET=your_client_secret_here # Your vehicle ID (get this after connecting a vehicle) # You can get this by running: bun run index.ts and following the OAuth flow VEHICLE_ID=your_vehicle_id_here # Optional: Custom redirect URI (defaults to http://localhost:3000/callback) SMARTCAR_REDIRECT_URI=http://localhost:3000/callback # Note: The app is set to 'test' mode by default # Change mode: 'live' in index.ts for production use # SQLite Database # Tokens are automatically stored in ./smartcar_tokens.db # To clear tokens: bun run index.ts --clear-tokens