diff --git a/.gitignore b/.gitignore index e427ff3..3a21de0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ +*.pyc +__pycache__/ node_modules/ -*/node_modules/ -*/build/ diff --git a/config/__pycache__/__init__.cpython-311.pyc b/config/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3d6501c..0000000 Binary files a/config/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/config/__pycache__/settings.cpython-311.pyc b/config/__pycache__/settings.cpython-311.pyc deleted file mode 100644 index 1de7f7f..0000000 Binary files a/config/__pycache__/settings.cpython-311.pyc and /dev/null differ diff --git a/config/__pycache__/urls.cpython-311.pyc b/config/__pycache__/urls.cpython-311.pyc deleted file mode 100644 index 28817aa..0000000 Binary files a/config/__pycache__/urls.cpython-311.pyc and /dev/null differ diff --git a/config/__pycache__/wsgi.cpython-311.pyc b/config/__pycache__/wsgi.cpython-311.pyc deleted file mode 100644 index 79ce690..0000000 Binary files a/config/__pycache__/wsgi.cpython-311.pyc and /dev/null differ diff --git a/core/__pycache__/__init__.cpython-311.pyc b/core/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3b7774e..0000000 Binary files a/core/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/core/__pycache__/admin.cpython-311.pyc b/core/__pycache__/admin.cpython-311.pyc deleted file mode 100644 index cd6f855..0000000 Binary files a/core/__pycache__/admin.cpython-311.pyc and /dev/null differ diff --git a/core/__pycache__/apps.cpython-311.pyc b/core/__pycache__/apps.cpython-311.pyc deleted file mode 100644 index 6435d92..0000000 Binary files a/core/__pycache__/apps.cpython-311.pyc and /dev/null differ diff --git a/core/__pycache__/context_processors.cpython-311.pyc b/core/__pycache__/context_processors.cpython-311.pyc deleted file mode 100644 index 8c0db3a..0000000 Binary files a/core/__pycache__/context_processors.cpython-311.pyc and /dev/null differ diff --git a/core/__pycache__/models.cpython-311.pyc b/core/__pycache__/models.cpython-311.pyc deleted file mode 100644 index 9aa598b..0000000 Binary files a/core/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/core/__pycache__/urls.cpython-311.pyc b/core/__pycache__/urls.cpython-311.pyc deleted file mode 100644 index 1f807fa..0000000 Binary files a/core/__pycache__/urls.cpython-311.pyc and /dev/null differ diff --git a/core/__pycache__/views.cpython-311.pyc b/core/__pycache__/views.cpython-311.pyc deleted file mode 100644 index 6867ddf..0000000 Binary files a/core/__pycache__/views.cpython-311.pyc and /dev/null differ diff --git a/core/migrations/__pycache__/__init__.cpython-311.pyc b/core/migrations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 58b1c14..0000000 Binary files a/core/migrations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/core/urls.py b/core/urls.py index 6299e3d..622ef9d 100644 --- a/core/urls.py +++ b/core/urls.py @@ -2,6 +2,8 @@ from django.urls import path from .views import home +app_name = "core" + urlpatterns = [ path("", home, name="home"), ]