From 465bf8b8eb7e268b1c38f91ba50857f595db0244 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Tue, 29 Dec 2020 12:52:08 +0100 Subject: [PATCH] rename settings/urls --- conf/manage.py | 2 +- conf/{ynh_pyinventory_settings.py => settings.py} | 0 conf/{ynh_urls.py => urls.py} | 0 conf/wsgi.py | 4 ++-- 4 files changed, 3 insertions(+), 3 deletions(-) rename conf/{ynh_pyinventory_settings.py => settings.py} (100%) rename conf/{ynh_urls.py => urls.py} (100%) diff --git a/conf/manage.py b/conf/manage.py index 944c2a6..c0f3ae6 100755 --- a/conf/manage.py +++ b/conf/manage.py @@ -5,7 +5,7 @@ import sys def main(): - os.environ['DJANGO_SETTINGS_MODULE'] = 'ynh_pyinventory_settings' + os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' from django.core.management import execute_from_command_line execute_from_command_line(sys.argv) diff --git a/conf/ynh_pyinventory_settings.py b/conf/settings.py similarity index 100% rename from conf/ynh_pyinventory_settings.py rename to conf/settings.py diff --git a/conf/ynh_urls.py b/conf/urls.py similarity index 100% rename from conf/ynh_urls.py rename to conf/urls.py diff --git a/conf/wsgi.py b/conf/wsgi.py index 34badf7..6158012 100644 --- a/conf/wsgi.py +++ b/conf/wsgi.py @@ -2,7 +2,7 @@ WSGI config """ import os -os.environ['DJANGO_SETTINGS_MODULE'] = 'ynh_pyinventory_settings' +os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' from django.core.wsgi import get_wsgi_application -application = get_wsgi_application() \ No newline at end of file +application = get_wsgi_application()