Skip to content

Commit

Permalink
[Issue #327] ci: Removed unneeded production docker postgres settings…
Browse files Browse the repository at this point in the history
… which will be part of the separate repository

[Issue #327] ci: Update the koalixcrm version to 1.14.0-rc2
  • Loading branch information
scaphilo committed Apr 7, 2024
1 parent ad8e1ea commit 5ec1c5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 36 deletions.
4 changes: 1 addition & 3 deletions koalixcrm/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# -*- coding: utf-8 -*-

KOALIXCRM_VERSION = "1.14.0-rc1"
KOALIXCRM_VERSION = "1.14.0-rc2"
3 changes: 1 addition & 2 deletions projectsettings/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from django.utils.translation import gettext_lazy as _
from grappelli.dashboard import modules, Dashboard
from grappelli.dashboard.utils import get_admin_site_name
from koalixcrm.version import KOALIXCRM_VERSION


Expand All @@ -19,7 +18,7 @@ class CustomIndexDashboard(Dashboard):

def init_with_context(self, context):
self.children.append(modules.Group(
_('koalixcrm Version' + KOALIXCRM_VERSION),
_('koalixcrm Version ' + KOALIXCRM_VERSION),
column=1,
collapsible=True,
children=[
Expand Down
4 changes: 2 additions & 2 deletions projectsettings/settings/base_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

MEDIA_URL = "/media/"
MEDIA_ROOT = os.path.join(BASE_DIR)
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')

PROJECT_ROOT = BASE_DIR

# Settings specific for koalixcrm
PDF_OUTPUT_ROOT = os.path.join(STATIC_ROOT, 'pdf')

# Settings specific for filebrowser
FILEBROWSER_DIRECTORY = 'media/uploads/'
FILEBROWSER_DIRECTORY = 'uploads/'
FILEBROWSER_EXTENSIONS = {
'XML': ['.xml'],
'XSL': ['.xsl'],
Expand Down
29 changes: 0 additions & 29 deletions projectsettings/settings/production_docker_postgres_settings.py

This file was deleted.

0 comments on commit 5ec1c5e

Please sign in to comment.