I have a spring-boot project and my IDE is VS code. I want to pass an environment variable to my applications. Right now I set it before the Gradle command
export PROJECT_NAME=test
./gradlew bootrun
PROJECT_NAME is my env variable and I access this in application.properties
what is the recommended approach to set environment variables in VS code for java