REACT_APP_API_URL=https://api.myapp.com REACT_APP_DEBUG=false REACT_APP_APP_NAME=MyApp
New developers can simply duplicate this file, rename it to .env.development , and fill in their local values. 2. Know When to Commit to Git
PORT=3000 DATABASE_URL="mongodb://localhost:27017/dev_db" API_SECRET_KEY="local_development_secret_key" ENABLE_DEBUG_LOGS=true Use code with caution. are usually written in UPPERCASE_SNAKE_CASE . Values follow the equals sign ( = ) without spaces.
REACT_APP_API_URL=https://api.myapp.com REACT_APP_DEBUG=false REACT_APP_APP_NAME=MyApp
New developers can simply duplicate this file, rename it to .env.development , and fill in their local values. 2. Know When to Commit to Git
PORT=3000 DATABASE_URL="mongodb://localhost:27017/dev_db" API_SECRET_KEY="local_development_secret_key" ENABLE_DEBUG_LOGS=true Use code with caution. are usually written in UPPERCASE_SNAKE_CASE . Values follow the equals sign ( = ) without spaces.