From bb2d22cd70b393c1377f87a0259d463a20abfc7a Mon Sep 17 00:00:00 2001 From: Stefan Wehrmeyer Date: Fri, 13 Jan 2017 18:03:41 +0100 Subject: [PATCH] Remove heroku url, replace with localhost --- seriesly/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seriesly/settings.py b/seriesly/settings.py index 6b2c6a2..996bb9f 100644 --- a/seriesly/settings.py +++ b/seriesly/settings.py @@ -35,7 +35,7 @@ def os_env(name, default=None): ADMIN_NAME = "Stefan Wehrmeyer" SITE_NAME = 'Seriesly' -DOMAIN_URL = os_env('DOMAIN_URL', "https://serieslynew.herokuapp.com") +DOMAIN_URL = os_env('DOMAIN_URL', "http://localhost:8000") # Make this unique, and don't share it with anybody. SECRET_KEY = os_env('DJANGO_SECRET_KEY', 'not-so-secret')