I have templates with variables. these variables are in databases and are environmentally dependent. Example:
address =$foo
develoment
$foo = "sdfsdf"
How do I combine all this? I do not know where to put the information.
In the template
address = "Http://ffff/dfg/"
I need to put a variable here
address = $pepe
My database has the following data depending on the environment:
$pepe = "Http://ffff/dfg/"
$pepep ="Http://ffff/dewrwerw/
I do not know what I should write in the recipe.
source
share