aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-12-15 20:19:17 -0500
committerBobby <[email protected]>2024-12-15 20:19:17 -0500
commit5c14aa56c401915a99cf1c6f5700e8e3cb88453b (patch)
treee486ed3ea32ef76163623894b40370483bd6f5d6 /apps
parent8bb529d5eefec11360e7aacb287120d6427793bd (diff)
downloadthatcomputerscientist-5c14aa56c401915a99cf1c6f5700e8e3cb88453b.tar.xz
thatcomputerscientist-5c14aa56c401915a99cf1c6f5700e8e3cb88453b.zip
login . logout working
Diffstat (limited to 'apps')
-rw-r--r--apps/pagoda/__init__.py0
-rw-r--r--apps/pagoda/admin.py3
-rw-r--r--apps/pagoda/apps.py6
-rw-r--r--apps/pagoda/migrations/__init__.py0
-rw-r--r--apps/pagoda/models.py3
-rw-r--r--apps/pagoda/tests.py3
-rw-r--r--apps/pagoda/views.py3
7 files changed, 18 insertions, 0 deletions
diff --git a/apps/pagoda/__init__.py b/apps/pagoda/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/apps/pagoda/__init__.py
diff --git a/apps/pagoda/admin.py b/apps/pagoda/admin.py
new file mode 100644
index 00000000..8c38f3f3
--- /dev/null
+++ b/apps/pagoda/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/apps/pagoda/apps.py b/apps/pagoda/apps.py
new file mode 100644
index 00000000..acc7a0eb
--- /dev/null
+++ b/apps/pagoda/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class PagodaConfig(AppConfig):
+ default_auto_field = "django.db.models.BigAutoField"
+ name = "pagoda"
diff --git a/apps/pagoda/migrations/__init__.py b/apps/pagoda/migrations/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/apps/pagoda/migrations/__init__.py
diff --git a/apps/pagoda/models.py b/apps/pagoda/models.py
new file mode 100644
index 00000000..71a83623
--- /dev/null
+++ b/apps/pagoda/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/apps/pagoda/tests.py b/apps/pagoda/tests.py
new file mode 100644
index 00000000..7ce503c2
--- /dev/null
+++ b/apps/pagoda/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/apps/pagoda/views.py b/apps/pagoda/views.py
new file mode 100644
index 00000000..91ea44a2
--- /dev/null
+++ b/apps/pagoda/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.