惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
罗磊的独立博客
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
J
Java Code Geeks
L
LangChain Blog
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Environment Variables UI - Vercel – Vercel
2020-04-14 · via Vercel News

2 min read

Customize Environment Variables for projects in your Dashboard

If you are working on a sophisticated project, you might have found yourself wanting to configure different Environment Variables depending on the Environment your project is deployed to.

With today's release, we're making it possible to configure different Environment Variables for Production, Preview, and Development – right in the Dashboard.

Link to headingNew project setting

To configure an Environment Variable for your project, simply navigate to your Project Settings and look for the newly added Environment Variables section:

The new "Environment Variables" field in the Project Settings.

The new "Environment Variables" field in the Project Settings.

Within this section, you can assign an Environment Variable to the Production, Preview, or Development Environment, depending on where you want it to be available.

Link to headingSystem environment variables

The platform provides several Environment Variables that contain values provided by the system, such as the URL of the deployment or the name of the Git branch that the deployment origined from.

In order to make one of them available to your code, choose it from this list and enter its name into the project setting like so:

Configuring a System Environment Variable.

Configuring a System Environment Variable.

Link to headingNew command for Vercel CLI

Environment Variables specified for the Development Environment are made available to your team and can be downloaded into a local development setup using a newly added vercel env pull command, which automatically creates a .env file:

$ vercel env pull

Vercel CLI 18.0.0

Downloading Development Environment Variables for project my-site

✅ Created .env file [510ms]

Retrieving Development Environment Variables locally

At least version 18.0.0 of Vercel CLI is required to be able to run this command.

Furthermore, you can use vercel env add and vercel env remove to add or remove Environment Variables from your project, directly from the command-line.

Link to headingConclusion

The new Environment Variables section in the Project Settings lets you specify different Environment Variables for Production, Preview, and Development, without creating a vercel.json configuration file.

Additionally, sharing Development Environment Variables with your colleagues is now easier than ever before, since they can be pulled from the project using vercel env pull.

Let us know what you think about this change. We're excited to help you succeed.