From 3c1617c4f93f4f64a473e4d6c3439d60a6569269 Mon Sep 17 00:00:00 2001 From: Ana Gelez Date: Mon, 10 Aug 2020 14:40:36 +0200 Subject: [PATCH] Add a dummy password --- .drone.jsonnet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 8df1ba06..09aeb238 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -53,7 +53,7 @@ local startDb(db) = if db == "postgres" then { environment: { POSTGRES_USER: "plume", POSTGRES_DB: "plume", - POSTGRES_PASSWORD: "not really needed for connections from localhost", + POSTGRES_PASSWORD: "password", } } else {}; @@ -151,7 +151,7 @@ local Integration(db) = { image: plumeEnv, environment: { BROWSER: "firefox", - DATABASE_URL: if db == "postgres" then "postgres://plume@start-db/plume" else "plume.db", + DATABASE_URL: if db == "postgres" then "postgres://plume:password@start-db/plume" else "plume.db", }, commands: [ // Install the front-end