.env.sample ~upd~ Site

LOG_LEVEL=info # debug, info, warn, error LOG_TO_FILE=false

Here's an example .env.sample file for a Node.js application: .env.sample

Comments in .env.sample explain each variable. This lives next to the code, so it’s updated when variables change. LOG_LEVEL=info # debug

# Required API_BASE_URL=https://api.example.com .env.sample

STRIPE_SECRET_KEY=sk_test_your_test_key_here

# .env.sample APP_NAME="MyApp" APP_ENV=local APP_KEY=base64:placeholder DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_DATABASE=laravel DB_USERNAME=root DB_PASSWORD=

Arriba