Fix DATABASE_URL in the Makefile production config generator

This commit is contained in:
Joh Dokler 2021-04-21 07:56:55 +02:00
parent 86239e0782
commit 1383c0ce3d

View file

@ -5,7 +5,7 @@ PAPERCLIP_HASH_SECRET=$(shell openssl rand -base64 128 | tr -d '\n')
define PRODUCTION_CONFIG_BODY define PRODUCTION_CONFIG_BODY
SECRET_KEY_BASE=$(shell openssl rand -hex 64) SECRET_KEY_BASE=$(shell openssl rand -hex 64)
PAPERCLIP_HASH_SECRET=$(shell openssl rand -base64 128 | tr -d '\n') 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 PAPERCLIP_STORAGE=filesystem
ENABLE_RECAPTCHA=false ENABLE_RECAPTCHA=false
ENABLE_USER_CONFIRMATION=false ENABLE_USER_CONFIRMATION=false