hey, guys. Is there any instructions on how to go ...
# general
a
hey, guys. Is there any instructions on how to go from the examples approach of having all pulumi files in the root of the directory to placing them in a .pulumi folder? Maybe a flag that should be passed on when creating the stack, updating and so on?
s
Do you mean in a flat structure, but just inside a directory in the root of the repository, or something other than that?
a
Hey, Jen. Yes, I mean having my index file and Pulumi.yaml inside something like my-repo/.pulumi
s
Ah, you don’t need to do anything special there - you can just do
mkdir .pulumi
, cd into it and then do
pulumi new
from there
a
right. Works without a hitch. Thank you