Deployment & Environments

Development Environment

What It Is

Where you build and test code on your own machine

Analogy

Your test kitchen — you can make mistakes, experiment, and no customers will see

Try It Out

🛠️Development
localhost:3000

Your local machine for building and testing

Environment Variables3 differences highlighted
NODE_ENV="development"
DEBUG="true"
API_URL="http://localhost:3001"
🛠️

Local Development

Your local machine. Safe to experiment and break things.

Click tabs to compare configurations. Yellow highlights show values that differ between environments.