ideogram-multi-env-setup

Featured

Configure Ideogram across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment keys, or implementing environment-specific Ideogram configurations. Trigger with phrases like "ideogram environments", "ideogram staging", "ideogram dev prod", "ideogram environment setup", "ideogram multi-env".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Ideogram Multi-Environment Setup ## Overview Configure Ideogram API access across development, staging, and production with isolated API keys, environment-specific model/speed settings, and proper secret management. Each environment gets its own key and configuration to prevent cross-environment issues. ## Environment Strategy | Environment | API Key Source | Model | Speed | Cache | Billing | |-------------|---------------|-------|-------|-------|---------| | Development | `.env.local` | V_2_TURBO | TURBO | Disabled | Minimal top-up | | Staging | CI/CD secrets | V_2 | DEFAULT | 5 min TTL | Moderate | | Production | Secret manager | V_2 or V3 | DEFAULT | 10 min TTL | Full auto top-up | ## Instructions ### Step 1: Configuration Structure ```typescript // config/ideogram.ts type Environment = "development" | "staging" | "production"; interface IdeogramConfig { apiKey: string; defaultModel: string; renderingSpeed: string; timeout: number; maxRetries: number; concurrency: number; cache: { enabled: boolean; ttlSeconds: number }; debug: boolean; } const configs: Record<Environment, Omit<IdeogramConfig, "apiKey">> = { development: { defaultModel: "V_2_TURBO", renderingSpeed: "TURBO", timeout: 30000, maxRetries: 1, concurrency: 2, cache: { enabled: false, ttlSeconds: 60 }, debug: true, }, staging: { defaultModel: "V_2", renderingSpeed: "DEFAULT", timeout: 60000, maxRetries: 3, concurrency: 5, cache: { e...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

deepgram-multi-env-setup

Configure Deepgram multi-environment setup for dev, staging, and production. Use when setting up environment-specific configurations, managing multiple Deepgram projects, or implementing environment isolation. Trigger: "deepgram environments", "deepgram staging", "deepgram dev prod", "multi-environment deepgram", "deepgram config management".

2,266 Updated today
jeremylongshore
AI & Automation Featured

cohere-multi-env-setup

Configure Cohere across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment API keys, model selection, and rate limit strategies. Trigger with phrases like "cohere environments", "cohere staging", "cohere dev prod", "cohere environment setup", "cohere config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-local-dev-loop

Configure Ideogram local development with mock responses and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Ideogram. Trigger with phrases like "ideogram dev setup", "ideogram local development", "ideogram dev environment", "develop with ideogram", "ideogram testing".

2,266 Updated today
jeremylongshore
AI & Automation Featured

grammarly-multi-env-setup

Configure Grammarly across multiple environments. Use when setting up dev/staging/prod environments with Grammarly API. Trigger with phrases like "grammarly multi-env", "grammarly environments", "grammarly staging", "grammarly dev prod setup".

2,266 Updated today
jeremylongshore
AI & Automation Featured

groq-multi-env-setup

Configure Groq across dev, staging, and production with environment-specific model selection, rate limits, and API keys. Trigger with phrases like "groq environments", "groq staging", "groq dev prod", "groq environment setup", "groq multi-env", "groq config by env".

2,266 Updated today
jeremylongshore