diff --git a/landing/__init__.py b/landing/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/landing/admin.py b/landing/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/landing/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/landing/apps.py b/landing/apps.py new file mode 100644 index 0000000..c45b3f2 --- /dev/null +++ b/landing/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class LandingConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'landing' diff --git a/landing/migrations/__init__.py b/landing/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/landing/models.py b/landing/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/landing/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/landing/tests.py b/landing/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/landing/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/landing/views.py b/landing/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/landing/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. 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.