From d81296bcd368b5eb80be3aa9d69af8acc360aca7 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 9 Jun 2016 12:01:23 +0200 Subject: Fix default installation for multi instances --- install/local_settings.py.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/local_settings.py.sample b/install/local_settings.py.sample index 3f37b0e72..459828c00 100644 --- a/install/local_settings.py.sample +++ b/install/local_settings.py.sample @@ -7,6 +7,7 @@ TEMPLATE_DEBUG = DEBUG SQL_DEBUG = False APP_NAME = u"#PROJECT_NAME#" +PROJECT_SLUG = u"#PROJECT_NAME#" ROOT_URLCONF = '#APP_NAME#.urls' STATIC_URL = '/static-#DATE#/' SECRET_KEY = "#SECRET_KEY#" @@ -25,7 +26,7 @@ MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.contrib.gis.db.backends.postgis', - 'NAME': '#DB_NAME#', + 'NAME': '#DB_NAME#', 'HOST': '#DB_HOST#', 'PORT': '#DB_PORT#', 'USER': '#DB_NAME#', @@ -40,4 +41,3 @@ EXTRA_APPS = [ 'archaeological_warehouse', 'archaeological_finds', ] - -- cgit v1.2.3 From 05003124ae5f03de6fe8fd4a9304dcf3d64e859e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 9 Jun 2016 12:08:03 +0200 Subject: v0.95.3 --- CHANGES.txt | 1 + version.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 368f5a3c4..f6473a10a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -11,6 +11,7 @@ Bug fixes: - Fix operation code for operation with no year (or year 0) - Fix warehouse creation - Allow to save a find if no operation is defined +- Add PROJECT_SLUG to default installation 0.94 (2016-06-03) ----------------- diff --git a/version.py b/version.py index 2c496f753..125271355 100644 --- a/version.py +++ b/version.py @@ -1,4 +1,4 @@ -VERSION = (0, 95, 2) +VERSION = (0, 95, 3) def get_version(): -- cgit v1.2.3