Is there a way to define a default value if ENV variable is not defined? For example:
numprocesses = $(circus.env.WORKERS_NUMBER)
So if WORKERS_NUMBER is not defined I will get an error. I would like to do this:
"If WORKERS_NUMBER is not defined the numprocesses should be equal to 3"