Drop any file to identify it
We read file headers, not extensions. Nothing gets uploaded.
Drop it!
Let go to identify this file.
Couldn't identify this file
What is it
A plain text file containing key-value pairs for environment variables. Used to store configuration (API keys, database URLs, secrets) separately from source code. Should never be committed to version control.
Technical details
Safety
What opens it
Any text editor
FAQ
Should I commit .env files to Git?
Absolutely not. Add .env to your .gitignore immediately. ENV files contain secrets that should never be in version control. Use .env.example with placeholder values instead.
Related formats