👩‍🚀

Deploying to your host

After exporting your code you'll want to consult the README.md file in the root of your codebase for the instructions on deploying, as this can differ a bit depending on your chosen stack options.

Here's how you'd run your app if you selected the default stack (React and Vercel):

Install the Vercel CLI

npm install -g vercel

Add each variable from your .env file to your Vercel project, including the ones prefixed with "REACT_APP_". You'll be prompted to enter its value and choose one or more environments (development, preview, or production). See Vercel Environment Variables to learn more about how this works, how to update values through the Vercel UI, and how to use secrets for extra security.

vercel env add plain VARIABLE_NAME

Run this command to deploy to a unique preview URL. Your "preview" environment variables will be used.

vercel

Run this command to deploy to your production domain. Your "production" environment variables will be used.

vercel --prod

🗣
Any questions you have that aren't answered here? Please reach out and let us know. We'll answer your question and then improve the docs for others.