diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 00000000..e69de29b diff --git a/home/__init__.py b/home/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/home/__pycache__/__init__.cpython-312.pyc b/home/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 00000000..ede2350b Binary files /dev/null and b/home/__pycache__/__init__.cpython-312.pyc differ diff --git a/home/__pycache__/admin.cpython-312.pyc b/home/__pycache__/admin.cpython-312.pyc new file mode 100644 index 00000000..630f19ae Binary files /dev/null and b/home/__pycache__/admin.cpython-312.pyc differ diff --git a/home/__pycache__/apps.cpython-312.pyc b/home/__pycache__/apps.cpython-312.pyc new file mode 100644 index 00000000..433d81fe Binary files /dev/null and b/home/__pycache__/apps.cpython-312.pyc differ diff --git a/home/__pycache__/models.cpython-312.pyc b/home/__pycache__/models.cpython-312.pyc new file mode 100644 index 00000000..6e420c7a Binary files /dev/null and b/home/__pycache__/models.cpython-312.pyc differ diff --git a/home/admin.py b/home/admin.py new file mode 100644 index 00000000..8c38f3f3 --- /dev/null +++ b/home/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/home/apps.py b/home/apps.py new file mode 100644 index 00000000..e5ea0afa --- /dev/null +++ b/home/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class HomeConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'home' diff --git a/home/migrations/__init__.py b/home/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/home/migrations/__pycache__/__init__.cpython-312.pyc b/home/migrations/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 00000000..eb0b08f0 Binary files /dev/null and b/home/migrations/__pycache__/__init__.cpython-312.pyc differ diff --git a/home/models.py b/home/models.py new file mode 100644 index 00000000..71a83623 --- /dev/null +++ b/home/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/home/tests.py b/home/tests.py new file mode 100644 index 00000000..7ce503c2 --- /dev/null +++ b/home/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/home/views.py b/home/views.py new file mode 100644 index 00000000..91ea44a2 --- /dev/null +++ b/home/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/smartnotes/__pycache__/__init__.cpython-312.pyc b/smartnotes/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 00000000..1ebadf02 Binary files /dev/null and b/smartnotes/__pycache__/__init__.cpython-312.pyc differ diff --git a/smartnotes/__pycache__/settings.cpython-312.pyc b/smartnotes/__pycache__/settings.cpython-312.pyc new file mode 100644 index 00000000..ad5508a4 Binary files /dev/null and b/smartnotes/__pycache__/settings.cpython-312.pyc differ diff --git a/smartnotes/__pycache__/urls.cpython-312.pyc b/smartnotes/__pycache__/urls.cpython-312.pyc new file mode 100644 index 00000000..88a385da Binary files /dev/null and b/smartnotes/__pycache__/urls.cpython-312.pyc differ diff --git a/smartnotes/__pycache__/wsgi.cpython-312.pyc b/smartnotes/__pycache__/wsgi.cpython-312.pyc new file mode 100644 index 00000000..50353d90 Binary files /dev/null and b/smartnotes/__pycache__/wsgi.cpython-312.pyc differ diff --git a/smartnotes/settings.py b/smartnotes/settings.py index f0b7e481..cb9a4556 100644 --- a/smartnotes/settings.py +++ b/smartnotes/settings.py @@ -37,6 +37,9 @@ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + + # apps + 'home', ] MIDDLEWARE = [