skills/smithery.ai/apollo-multi-env-setup

apollo-multi-env-setup

Installation
SKILL.md

Apollo Multi-Environment Setup

Overview

Configure Apollo.io for multiple environments (development, staging, production) with isolated API keys, environment-specific rate limits, configuration validation, and Kubernetes-native secret management.

Prerequisites

  • Valid Apollo.io API credentials (separate keys per environment)
  • Node.js 18+ or Python 3.10+
  • Completed apollo-install-auth setup

Instructions

Step 1: Define Environment Configuration Schema

// src/config/apollo-config.ts
import { z } from 'zod';

const EnvironmentSchema = z.enum(['development', 'staging', 'production']);
Installs
1
First Seen
Mar 21, 2026
apollo-multi-env-setup from smithery.ai