From 79966869a098b0beb4f213160dc06cd9f4f8848b Mon Sep 17 00:00:00 2001 From: Joh Dokler Date: Wed, 21 Apr 2021 07:56:55 +0200 Subject: [PATCH] Fix DATABASE_URL in the Makefile production config generator --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ca8c2957e..cdc755f28 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ PAPERCLIP_HASH_SECRET=$(shell openssl rand -base64 128 | tr -d '\n') define PRODUCTION_CONFIG_BODY SECRET_KEY_BASE=$(shell openssl rand -hex 64) PAPERCLIP_HASH_SECRET=$(shell openssl rand -base64 128 | tr -d '\n') -DATABASE_URL=postgresql://postgres@db/scinote_production +DATABASE_URL=postgresql://postgres:mysecretpassword@db/scinote_production PAPERCLIP_STORAGE=filesystem ENABLE_RECAPTCHA=false ENABLE_USER_CONFIRMATION=false