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()