From f17f9060b07e6c763ca075731bd707db1a88bdb9 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sun, 17 May 2020 23:34:13 +0200 Subject: [PATCH] [config] add path to chrome --- uncloud/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/uncloud/settings.py b/uncloud/settings.py index 884c370..df3ba17 100644 --- a/uncloud/settings.py +++ b/uncloud/settings.py @@ -182,6 +182,10 @@ SECRET_KEY=get_random_secret_key() ALLOWED_HOSTS = [] +# required for hardcopy / pdf rendering: https://github.com/loftylabs/django-hardcopy +CHROME_PATH = '/usr/bin/chromium-browser' + + # Overwrite settings with local settings, if existing try: from uncloud.local_settings import *