AO

ARCHIVO OBRERO

.env.local.production

Do not accidentally put highly sensitive credentials (like private database passwords) into variables prefixed for the client side within your .env.local.production file. Summary Comparison Commit to Git? Environment Context .env Default settings for all environments .env.local Local overrides for all environments .env.production Production defaults for the whole team Production only .env.local.production Local production overrides on your machine No Production only

# Database connection for production testing DATABASE_URL="postgresql://user:password@localhost:5432/prod_db" # Production API Keys (Local Overrides) STRIPE_SECRET_KEY="sk_prod_xxxxxxxxxxxx" SENDGRID_API_KEY="SG.xxxxxxxxxxxxxxxxxxxx" # Application Settings NEXT_PUBLIC_API_URL="https://yourdomain.com" NODE_ENV="production" Use code with caution. Copied to clipboard .env.local.production

API_KEY=abc123