Change Env Vars For Development
To add additional environment variables or change the value of existing environment variables for your dev container, you can specify the env
field.
devspace.yaml
dev:
backend:
imageSelector: ghcr.io/org/project/image
devImage: ghcr.io/loft-sh/devspace-containers/python:3-alpine
env:
- name: DEBUG
value: "true"
- name: APP_PORT
value: "8080"