-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Issue #327] ci: Update the wsgi.py to work within the planned prod d…
…ocker setup see separate repository: https://github.com/KoalixSwitzerland/koalixcrm-prod-container [Issue #327] ci: Update the requirements of psycopg2-binary to 2.9.9 because of a strange error message [Issue #327] ci: Removed prod requirements as they are already part of the setup.py. When the installation is done via pip install koalix-crm [Issue #327] ci: Update the koalixcrm version to 1.14.0-rc1 [Issue #354] fix: Security problem within Django 3.2.20 and Pillow 7.1.2 by updating both libraries to newer version
- Loading branch information
Showing
6 changed files
with
17 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
KOALIXCRM_VERSION = "1.13.0" | ||
KOALIXCRM_VERSION = "1.14.0-rc1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
""" | ||
WSGI config for test_koalixcrm project. | ||
WSGI config for koalixcrm project. | ||
It exposes the WSGI callable as a module-level variable named ``application``. | ||
This module contains the WSGI application used by Django's development server | ||
and any production WSGI deployments. It should expose a module-level variable | ||
named `application`. Django's `runserver` and `runfcgi` commands discover | ||
this application via the `WSGI_APPLICATION` setting. | ||
For more information on this file, see | ||
https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/ | ||
Usually this will be called "koalixcrm.wsgi". | ||
""" | ||
|
||
import os | ||
|
||
from django.core.wsgi import get_wsgi_application | ||
|
||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_koalixcrm.settings") | ||
# The settings module that Django uses. By convention, it is usually in the form "myproject.settings.production" | ||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", | ||
"koalixcrm.projectsettings.settings.production_docker_postgres_settings") | ||
|
||
application = get_wsgi_application() | ||
application = get_wsgi_application() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-r requirements/prod_requirements.txt | ||
-r requirements/development_requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters