mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
1ef18c4b67
* Add consul-api-double under api * Update config to reflect api change * Remove consul-api-double as a dependency * api -> mock-api * Fixup mocks path for staging
14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
[
|
|
${
|
|
range(env('CONSUL_DATACENTER_COUNT', 10)).map((item, i) => {
|
|
if(i === 0) {
|
|
return `"dc1"`;
|
|
}
|
|
return `
|
|
"${fake.address.countryCode().toLowerCase()}_${ i % 2 ? "west" : "east"}-${i}"
|
|
`;
|
|
}
|
|
)
|
|
}
|
|
]
|