azukiapp/azk

Can I use import in Azkfile and have multiple Azkfiles?

srghma opened this issue · 0 comments

I came here from this issue moby/moby#31101 looking for a better tool to orchestrate projects. My requirements is similar to Yajo requirements (project)

I want to have config files Azkfile.common.js, Azkfile.test.js and others.
And be able to import configuration from common to others

something like this would work perfectly:

// Azkfile.common.js
export default {
  be: {....},
  redis: { .. },
}
// Azkfile.test.js
import common from ...

system({
  ...common,
  be: {
    extends : common.be,
    ....
  },
})