From 4ace2754a13f09321865e332a1572fddaea62480 Mon Sep 17 00:00:00 2001 From: Jan Range <30547301+JR-1991@users.noreply.github.com> Date: Wed, 24 Sep 2025 10:25:32 +0200 Subject: [PATCH] Update `API_TOKEN` export example in README Replaces the grep-based API_TOKEN export with a direct assignment for clarity in the setup instructions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9c130e..425b516 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ docker compose \ ```bash export BASE_URL=http://localhost:8080 -export $(grep "API_TOKEN" "dv/bootstrap.exposed.env") +export API_TOKEN=XXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX export DVUPLOADER_TESTING=true ```