Indicator for current project

Hello,
is there a way on how to know if you are on that project?
after I enter a command

doppler projects

there’s a list then an indicator that you are in that project like…

*PROJECT_1
PROJECT_2
PROJECT_3

Hi @Dex,

You can do this a couple of ways. First, you can check the DOPPLER_PROJECT environment variable in your secrets:

doppler secrets get DOPPLER_PROJECT

This will make an API call though. You can determine this locally by doing something like this:

doppler configure get project

That will display the project configured for the directory you’re in now.

Regards,
-Joel

Got it. Thank @watsonian,