Add apps for the planned areas
authorDavid Kerkeslager <kerkeslager@gmail.com>
Wed, 2 Mar 2022 23:11:41 +0000 (18:11 -0500)
committerDavid Kerkeslager <kerkeslager@gmail.com>
Wed, 2 Mar 2022 23:11:41 +0000 (18:11 -0500)
21 files changed:
src/climbing/__init__.py [new file with mode: 0644]
src/climbing/admin.py [new file with mode: 0644]
src/climbing/apps.py [new file with mode: 0644]
src/climbing/migrations/__init__.py [new file with mode: 0644]
src/climbing/models.py [new file with mode: 0644]
src/climbing/tests.py [new file with mode: 0644]
src/climbing/views.py [new file with mode: 0644]
src/nutrition/__init__.py [new file with mode: 0644]
src/nutrition/admin.py [new file with mode: 0644]
src/nutrition/apps.py [new file with mode: 0644]
src/nutrition/migrations/__init__.py [new file with mode: 0644]
src/nutrition/models.py [new file with mode: 0644]
src/nutrition/tests.py [new file with mode: 0644]
src/nutrition/views.py [new file with mode: 0644]
src/training/__init__.py [new file with mode: 0644]
src/training/admin.py [new file with mode: 0644]
src/training/apps.py [new file with mode: 0644]
src/training/migrations/__init__.py [new file with mode: 0644]
src/training/models.py [new file with mode: 0644]
src/training/tests.py [new file with mode: 0644]
src/training/views.py [new file with mode: 0644]

diff --git a/src/climbing/__init__.py b/src/climbing/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/climbing/admin.py b/src/climbing/admin.py
new file mode 100644 (file)
index 0000000..8c38f3f
--- /dev/null
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/src/climbing/apps.py b/src/climbing/apps.py
new file mode 100644 (file)
index 0000000..22b92e3
--- /dev/null
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class ClimbingConfig(AppConfig):
+    default_auto_field = 'django.db.models.BigAutoField'
+    name = 'climbing'
diff --git a/src/climbing/migrations/__init__.py b/src/climbing/migrations/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/climbing/models.py b/src/climbing/models.py
new file mode 100644 (file)
index 0000000..71a8362
--- /dev/null
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/src/climbing/tests.py b/src/climbing/tests.py
new file mode 100644 (file)
index 0000000..7ce503c
--- /dev/null
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/src/climbing/views.py b/src/climbing/views.py
new file mode 100644 (file)
index 0000000..91ea44a
--- /dev/null
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.
diff --git a/src/nutrition/__init__.py b/src/nutrition/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/nutrition/admin.py b/src/nutrition/admin.py
new file mode 100644 (file)
index 0000000..8c38f3f
--- /dev/null
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/src/nutrition/apps.py b/src/nutrition/apps.py
new file mode 100644 (file)
index 0000000..7d077c9
--- /dev/null
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class NutritionConfig(AppConfig):
+    default_auto_field = 'django.db.models.BigAutoField'
+    name = 'nutrition'
diff --git a/src/nutrition/migrations/__init__.py b/src/nutrition/migrations/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/nutrition/models.py b/src/nutrition/models.py
new file mode 100644 (file)
index 0000000..71a8362
--- /dev/null
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/src/nutrition/tests.py b/src/nutrition/tests.py
new file mode 100644 (file)
index 0000000..7ce503c
--- /dev/null
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/src/nutrition/views.py b/src/nutrition/views.py
new file mode 100644 (file)
index 0000000..91ea44a
--- /dev/null
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.
diff --git a/src/training/__init__.py b/src/training/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/training/admin.py b/src/training/admin.py
new file mode 100644 (file)
index 0000000..8c38f3f
--- /dev/null
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/src/training/apps.py b/src/training/apps.py
new file mode 100644 (file)
index 0000000..8051e6c
--- /dev/null
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class TrainingConfig(AppConfig):
+    default_auto_field = 'django.db.models.BigAutoField'
+    name = 'training'
diff --git a/src/training/migrations/__init__.py b/src/training/migrations/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/src/training/models.py b/src/training/models.py
new file mode 100644 (file)
index 0000000..71a8362
--- /dev/null
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/src/training/tests.py b/src/training/tests.py
new file mode 100644 (file)
index 0000000..7ce503c
--- /dev/null
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/src/training/views.py b/src/training/views.py
new file mode 100644 (file)
index 0000000..91ea44a
--- /dev/null
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.