cat .env | grep -v '^#' | grep -v '^$'
Category: Self-Hosting
cat .env | grep -v '^#' | grep -v '^$'
Print active .env entries (non-comment, non-blank lines) for a quick review
Prints only the active lines from a .env file, filtering out comments and blank lines — a quick way to see what's actually configured.