How do I test in production without having to recommit? #7418
-
SummaryHi, ExampleNo response Steps to ReproduceThis is more of a conceptual problem rather than an individual code problem. I am sure I will have another issue in production but not in development and I would like to figure out how to take the steps to tackled it. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hey @adamjabarry! I usually use Vercel CLI to check builds on my local computer. The If the problem is caused by a missing environment variable, you can review them in project settings or use the CLI to pull variables into a local file and check that they match what you expect. You can also deploying projects from Vercel CLI if you want to deploy without pushing test code to GitHub. |
Beta Was this translation helpful? Give feedback.
-
|
This discussion was automatically locked because the community moved to a new site. Please join us at vercel.community |
Beta Was this translation helpful? Give feedback.
Hey @adamjabarry! I usually use Vercel CLI to check builds on my local computer.
The
vercel devcommand is useful for running a development build, andvercel buildcan be used to make sure a build will succeed.If the problem is caused by a missing environment variable, you can review them in project settings or use the CLI to pull variables into a local file and check that they match what you expect.
You can also deploying projects from Vercel CLI if you want to deploy without pushing test code to GitHub.