azukiapp / azk

azk is a lightweight open source development environment orchestration tool. Instantly & safely run any environment on your local machine.
http://azk.io
Apache License 2.0
899 stars 63 forks source link

Use a environment variable on same system where it was set #662

Open andreyev opened 8 years ago

andreyev commented 8 years ago

It would be great if we could use a freshly set environment variable on same envs block where it was set, like this:

...
envs: {
  MYSQL_DATABASE : "#{manifest.dir}_development",
  MYSQL_ROOT_PASSWORD: "#{env.MYSQL_DATABASE}",
},
...