I am very new to Micronaut and I just want to ask because I couldnt get any answers from the offical docs
I have a .env file on the root of my folder. Here's my .env
PORT=8081
I tried to access the PORT variable on my application.yml but it is not reading the variable from .env file. Here's my application.yml
micronaut:
application:
name: test-app
server:
port:${PORT}