mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-27 01:05:21 +08:00
Fix DATABASE_URL in the Makefile production config generator
This commit is contained in:
parent
3e8db930c6
commit
79966869a0
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue