env-management
Original:🇺🇸 English
Translated
Complete environment variable management with type-safe validation, Vercel dev workflow, and prebuild validation.
5installs
Added on
NPX Install
npx skill4agent add andrelandgraf/fullstackrecipes env-managementTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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.
bash
curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/config-schema-setupEnvironment Variable Management with Vercel
Manage environment variables across Vercel environments. Sync with Vercel CLI, handle local overrides, and load env vars in scripts.
bash
curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/env-workflow-vercelBuild-Time Environment Variable Validation
Validate environment variables on server start and before builds. Catch missing or invalid variables early with clear error messages.
bash
curl -H "Accept: text/markdown" https://fullstackrecipes.com/api/recipes/env-validation