From ab497219f478689107f192cf07adf3817a2dd212 Mon Sep 17 00:00:00 2001 From: Tim Adams Date: Mon, 18 Dec 2023 10:27:47 +0100 Subject: [PATCH 1/3] Update README.md Closes #29 --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 1cdffd1..7a5fc54 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,15 @@ cd frontend && npm start You may alternatively start the backend and frontend servers using the make command `make run-local`, given you have all required python dependencies installed already. +## API authentification +The following two API endpoints for batch upating data as well as batch dowloading data are secured by a basic authentification workflow: +- /datasets/import +- /datasets/import + +The default username/password are defined in the [backend environment file](https://github.com/elg34/VAMBN/tree/master/helper). You may change before the application startup by adapting the corresponding system environment variables: + +```bash +export SYNDAT_ADMIN_USERNAME=my_new_username +export SYNDAT_ADMIN_PASSWORD=my_new_password +``` From d4f37881f78a7d632f75d6a1004b2ad191b1fd5f Mon Sep 17 00:00:00 2001 From: Tim Adams Date: Wed, 20 Dec 2023 08:51:51 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a5fc54..2c1e445 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ The following two API endpoints for batch upating data as well as batch dowloadi - /datasets/import - /datasets/import -The default username/password are defined in the [backend environment file](https://github.com/elg34/VAMBN/tree/master/helper). You may change before the application startup by adapting the corresponding system environment variables: +The default username/password are defined in the [backend environment file](https://github.com/elg34/VAMBN/tree/master/helper). You may change them before the application startup by adapting the corresponding system environment variables: ```bash export SYNDAT_ADMIN_USERNAME=my_new_username From e54895d090821ad6c43dc805b6ebe591e5ef6450 Mon Sep 17 00:00:00 2001 From: Tim Adams Date: Thu, 21 Dec 2023 14:40:45 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c1e445..6ad7275 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ You may alternatively start the backend and frontend servers using the make comm The following two API endpoints for batch upating data as well as batch dowloading data are secured by a basic authentification workflow: - /datasets/import -- /datasets/import +- /datasets/export The default username/password are defined in the [backend environment file](https://github.com/elg34/VAMBN/tree/master/helper). You may change them before the application startup by adapting the corresponding system environment variables: