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