# .env.example: the TEMPLATE you DO commit. # # This file documents which variables the app needs, with no real values. Teammates (and the # next AI session) copy it to a real `.env`, fill in the secrets, and never commit that copy. # # cp .env.example .env # then edit .env with real values # # The real `.env` is gitignored (see the lab). This template is safe to commit precisely # because it contains no secrets. # Which environment this process is running as: dev | staging | prod. # Selects the backend URL (and which secret you're expected to supply). APP_ENV=dev # The backend API key. NEVER put a real value here in the committed template. TASKS_API_KEY=replace-me