From cd05ff4180681f6055850f09109f9858df869860 Mon Sep 17 00:00:00 2001 From: maxime Date: Mon, 27 May 2019 08:06:11 +0200 Subject: [PATCH] harbour is a port! --- gpp/urls.py | 2 +- {harbour => port}/__init__.py | 0 {harbour => port}/admin.py | 0 {harbour => port}/apps.py | 0 {harbour => port}/migrations/__init__.py | 0 {harbour => port}/models.py | 0 {harbour => port}/tests.py | 0 {harbour => port}/urls.py | 0 {harbour => port}/views.py | 0 9 files changed, 1 insertion(+), 1 deletion(-) rename {harbour => port}/__init__.py (100%) rename {harbour => port}/admin.py (100%) rename {harbour => port}/apps.py (100%) rename {harbour => port}/migrations/__init__.py (100%) rename {harbour => port}/models.py (100%) rename {harbour => port}/tests.py (100%) rename {harbour => port}/urls.py (100%) rename {harbour => port}/views.py (100%) diff --git a/gpp/urls.py b/gpp/urls.py index 5a985d3..4392efd 100644 --- a/gpp/urls.py +++ b/gpp/urls.py @@ -17,6 +17,6 @@ from django.contrib import admin from django.urls import include, path urlpatterns = [ - path('harbour/', include('harbour.urls')), + path('port/', include('port.urls')), path('admin/', admin.site.urls), ] diff --git a/harbour/__init__.py b/port/__init__.py similarity index 100% rename from harbour/__init__.py rename to port/__init__.py diff --git a/harbour/admin.py b/port/admin.py similarity index 100% rename from harbour/admin.py rename to port/admin.py diff --git a/harbour/apps.py b/port/apps.py similarity index 100% rename from harbour/apps.py rename to port/apps.py diff --git a/harbour/migrations/__init__.py b/port/migrations/__init__.py similarity index 100% rename from harbour/migrations/__init__.py rename to port/migrations/__init__.py diff --git a/harbour/models.py b/port/models.py similarity index 100% rename from harbour/models.py rename to port/models.py diff --git a/harbour/tests.py b/port/tests.py similarity index 100% rename from harbour/tests.py rename to port/tests.py diff --git a/harbour/urls.py b/port/urls.py similarity index 100% rename from harbour/urls.py rename to port/urls.py diff --git a/harbour/views.py b/port/views.py similarity index 100% rename from harbour/views.py rename to port/views.py