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-authsetup
Instructions
Step 1: Define Environment Configuration Schema
// src/config/apollo-config.ts
import { z } from 'zod';
const EnvironmentSchema = z.enum(['development', 'staging', 'production']);