Description
The project currently defines two separate sets of environment variables for what is conceptually the same thing: a backend base URL and an API credential. Each set is consumed by a different one of the competing API clients described in Issue 1. This duplication makes local setup confusing (which variable actually matters?) and makes it easy for a deployment to configure one set correctly while leaving the other unset or stale.
Why this matters
Configuration drift like this is a common source of "works on my machine" bugs, since whichever client happens to be imported determines which environment variable is actually read.
Acceptance criteria
Description
The project currently defines two separate sets of environment variables for what is conceptually the same thing: a backend base URL and an API credential. Each set is consumed by a different one of the competing API clients described in Issue 1. This duplication makes local setup confusing (which variable actually matters?) and makes it easy for a deployment to configure one set correctly while leaving the other unset or stale.
Why this matters
Configuration drift like this is a common source of "works on my machine" bugs, since whichever client happens to be imported determines which environment variable is actually read.
Acceptance criteria
.env.examplefile and any setup documentation are updated to reflect the single set of variables.