mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
Cleaning up docker compose logs, fixing postgres health check, turning DEBUG to False on docker.
This commit is contained in:
parent
ed988ca7bc
commit
105f619e5a
2 changed files with 5 additions and 4 deletions
|
@ -80,7 +80,7 @@ services:
|
|||
- POSTGRES_USER=newsblur
|
||||
- POSTGRES_PASSWORD=newsblur
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
||||
test: ["CMD-SHELL", "pg_isready -U newsblur"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
|
|
@ -11,15 +11,16 @@ ADMINS = (
|
|||
|
||||
SERVER_EMAIL = 'server@newsblur.com'
|
||||
HELLO_EMAIL = 'hello@newsblur.com'
|
||||
NEWSBLUR_URL = 'http://www.newsblur.com'
|
||||
NEWSBLUR_URL = 'https://localhost'
|
||||
SESSION_COOKIE_DOMAIN = 'localhost'
|
||||
|
||||
# ===================
|
||||
# = Global Settings =
|
||||
# ===================
|
||||
DOCKERBUILD = True
|
||||
DEBUG = True
|
||||
DEBUG_ASSETS = DEBUG
|
||||
DEBUG = False
|
||||
# DEBUG = True
|
||||
DEBUG_ASSETS = True
|
||||
MEDIA_URL = '/media/'
|
||||
IMAGES_URL = '/imageproxy'
|
||||
SECRET_KEY = 'YOUR SECRET KEY'
|
||||
|
|
Loading…
Add table
Reference in a new issue