What is .env File?
A file that stores environment variables for your local development environment
Why It Matters
.env files make it easy to manage settings locally without affecting production or sharing secrets
Real-World Example
A .env file might contain DATABASE_URL=postgres://localhost/myapp for local development
Learn More at buildDay Melbourne
Want to understand these concepts hands-on? Join our one-day workshop and build a real web application from scratch.
Related Terms
Git
A system that tracks every change to your code, letting you see history, undo mistakes, and collaborate with others
Environment Variables
Secret settings stored outside your code, like passwords and API keys
Full-stack
Working on both the frontend (what users see) and backend (the server and database) of an application
TypeScript
JavaScript with added type checking that catches errors before your code runs
JavaScript
The programming language that makes websites interactive and dynamic
Package Manager
A tool that installs, updates, and manages the external code libraries your project uses