andrelandgraf

env-management

Complete environment variable management with type-safe validation, Vercel dev workflow, and prebuild validation.

andrelandgraf 20 4 Updated 7mo ago
GitHub

Install

npx skillscat add andrelandgraf/fullstackrecipes/env-management

Install via the SkillsCat registry.

About this skill

We need to produce a 2-3 sentence plain-text summary, objective, factual, no marketing language, no superlatives, no calls to action, natural prose, no bullet points, no headings, no markdown formatting. At most 60 words. Must be only the summary text, no quotes. So produce maybe 2-3 sentences, within 60 words. Content: It does complete environment variable management with type-safe validation, Vercel dev workflow, prebuild validation. Solves problem of managing env vars safely, early validation, integration with Vercel.

SKILL.md

Environment Variable Management

Complete environment variable management with type-safe validation, Vercel dev workflow, and prebuild validation.

Cookbook - Complete These Recipes in Order

Type-Safe Environment Configuration

Type-safe environment variable validation using Zod with a Drizzle-like schema API. Supports server/public fields, feature flags, either-or constraints, and client-side protection.

curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/config-schema-setup

Environment Variable Management with Vercel

Manage environment variables across Vercel environments. Sync with Vercel CLI, handle local overrides, and load env vars in scripts.

curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/env-workflow-vercel

Build-Time Environment Variable Validation

Validate environment variables on server start and before builds. Catch missing or invalid variables early with clear error messages.

curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/env-validation