Files
ai-workflow-course/modules/17-secrets-config-and-environments/lab/starter/.env.example
T
claude 2684095e2f Build out all 27 modules + capstone (#1)
Co-authored-by: claude <claude@jpaul.io>
Co-committed-by: claude <claude@jpaul.io>
2026-06-22 12:19:01 -04:00

17 lines
686 B
Bash

# .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