Convert between different env file formats (.env, Docker, Kubernetes)
DATABASE_URL=postgres://user:password@localhost:5432/db API_KEY=abcdef123456 DEBUG=true APP_PORT=3000
-e DATABASE_URL=postgres://user:password@localhost:5432/db \ -e API_KEY=abcdef123456 \ -e DEBUG=true \ -e APP_PORT=3000
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"