diff --git a/Discussions/__init__.py b/Discussions/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Discussions/admin.py b/Discussions/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/Discussions/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/Discussions/apps.py b/Discussions/apps.py new file mode 100644 index 0000000..fc29ae7 --- /dev/null +++ b/Discussions/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class DiscussionsConfig(AppConfig): + name = 'Discussions' diff --git a/Discussions/migrations/__init__.py b/Discussions/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Discussions/models.py b/Discussions/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/Discussions/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/Discussions/tests.py b/Discussions/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/Discussions/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/Discussions/views.py b/Discussions/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/Discussions/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/LandingPage/__init__.py b/LandingPage/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/LandingPage/admin.py b/LandingPage/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/LandingPage/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/LandingPage/apps.py b/LandingPage/apps.py new file mode 100644 index 0000000..f262952 --- /dev/null +++ b/LandingPage/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class LandingpageConfig(AppConfig): + name = 'LandingPage' diff --git a/LandingPage/migrations/__init__.py b/LandingPage/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/LandingPage/models.py b/LandingPage/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/LandingPage/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/LandingPage/tests.py b/LandingPage/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/LandingPage/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/LandingPage/views.py b/LandingPage/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/LandingPage/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/Show/__init__.py b/Show/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Show/admin.py b/Show/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/Show/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/Show/apps.py b/Show/apps.py new file mode 100644 index 0000000..0fc9f6d --- /dev/null +++ b/Show/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ShowConfig(AppConfig): + name = 'Show' diff --git a/Show/migrations/__init__.py b/Show/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Show/models.py b/Show/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/Show/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/Show/tests.py b/Show/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/Show/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/Show/views.py b/Show/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/Show/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.