How do you all structure your folders when using G...
# golang
r
How do you all structure your folders when using Go and Pulumi? I want to have a clean approach. Thanks.
s
We have a folder structure like:
provision/bootstrap
/base
/kubernetes
/<additional_stacks>
Every stack gets into its own directory, as we use stacks not as in staging environments but as in separation of building blocks, all in the same project. No additional libraries of faned out code so far between stacks.
r
thank you!