From 1d3be64a786b974d50598a39e3abef89d576036b Mon Sep 17 00:00:00 2001 From: Mariana Sartorato Date: Wed, 3 Jul 2024 12:05:04 -0300 Subject: [PATCH] fix: update readme file --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 90b1ea9..6c12f59 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,16 @@ A Python http server built with [Django](https://www.djangoproject.com/) + [DRF] # Build -Create secret files: +Add a application_default_credentials.json file in the root of the project. To do so, follow the "Configure ADC with your Google Account" in the [link](https://cloud.google.com/docs/authentication/provide-credentials-adc#google-idp ). Then, find the `application_default_credentials.json` on `home/.config/gcloud` and copy its content to the file you created. + +Create secret files and add your password to playground_kcidb: ```sh mkdir -p backend/runtime/secrets uuidgen > backend/runtime/secrets/postgres_password_secret ``` +If necessary, change the DB_DEFAULT_USER in the `backend/utils/entrypoint.sh` file. + Startup the services with ```sh docker compose up --build -d