diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..f50dc65 Binary files /dev/null and b/db.sqlite3 differ diff --git a/mysite/__pycache__/__init__.cpython-310.pyc b/mysite/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..9976c9d Binary files /dev/null and b/mysite/__pycache__/__init__.cpython-310.pyc differ diff --git a/mysite/__pycache__/settings.cpython-310.pyc b/mysite/__pycache__/settings.cpython-310.pyc new file mode 100644 index 0000000..e790fd6 Binary files /dev/null and b/mysite/__pycache__/settings.cpython-310.pyc differ diff --git a/mysite/__pycache__/urls.cpython-310.pyc b/mysite/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000..37e3400 Binary files /dev/null and b/mysite/__pycache__/urls.cpython-310.pyc differ diff --git a/polls/__init__.py b/polls/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/polls/admin.py b/polls/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/polls/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/polls/apps.py b/polls/apps.py new file mode 100644 index 0000000..5a5f94c --- /dev/null +++ b/polls/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class PollsConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'polls' diff --git a/polls/migrations/__init__.py b/polls/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/polls/models.py b/polls/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/polls/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/polls/tests.py b/polls/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/polls/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/polls/views.py b/polls/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/polls/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.