Aligning the stars...
CT

Environment Variable Formatter

Convert between different env file formats (.env, Docker, Kubernetes)

Format Examples

.env Format

DATABASE_URL=postgres://user:password@localhost:5432/db
API_KEY=abcdef123456
DEBUG=true
APP_PORT=3000

Docker Format

-e DATABASE_URL=postgres://user:password@localhost:5432/db \
-e API_KEY=abcdef123456 \
-e DEBUG=true \
-e APP_PORT=3000

Kubernetes Format

env:
  - name: DATABASE_URL
    value: postgres://user:password@localhost:5432/db
  - name: API_KEY
    value: abcdef123456
  - name: DEBUG
    value: "true"
  - name: APP_PORT
    value: "3000"

© 2026 Constellation Networks

v1.0.0-1743140205 | Hosted on the swarm (⌐■_■)