From a61e6c6f81f4b3b226cdc232272f2cea3a129c2a Mon Sep 17 00:00:00 2001 From: David Kerkeslager Date: Wed, 2 Mar 2022 18:11:41 -0500 Subject: [PATCH] Add apps for the planned areas --- src/climbing/__init__.py | 0 src/climbing/admin.py | 3 +++ src/climbing/apps.py | 6 ++++++ src/climbing/migrations/__init__.py | 0 src/climbing/models.py | 3 +++ src/climbing/tests.py | 3 +++ src/climbing/views.py | 3 +++ src/nutrition/__init__.py | 0 src/nutrition/admin.py | 3 +++ src/nutrition/apps.py | 6 ++++++ src/nutrition/migrations/__init__.py | 0 src/nutrition/models.py | 3 +++ src/nutrition/tests.py | 3 +++ src/nutrition/views.py | 3 +++ src/training/__init__.py | 0 src/training/admin.py | 3 +++ src/training/apps.py | 6 ++++++ src/training/migrations/__init__.py | 0 src/training/models.py | 3 +++ src/training/tests.py | 3 +++ src/training/views.py | 3 +++ 21 files changed, 54 insertions(+) create mode 100644 src/climbing/__init__.py create mode 100644 src/climbing/admin.py create mode 100644 src/climbing/apps.py create mode 100644 src/climbing/migrations/__init__.py create mode 100644 src/climbing/models.py create mode 100644 src/climbing/tests.py create mode 100644 src/climbing/views.py create mode 100644 src/nutrition/__init__.py create mode 100644 src/nutrition/admin.py create mode 100644 src/nutrition/apps.py create mode 100644 src/nutrition/migrations/__init__.py create mode 100644 src/nutrition/models.py create mode 100644 src/nutrition/tests.py create mode 100644 src/nutrition/views.py create mode 100644 src/training/__init__.py create mode 100644 src/training/admin.py create mode 100644 src/training/apps.py create mode 100644 src/training/migrations/__init__.py create mode 100644 src/training/models.py create mode 100644 src/training/tests.py create mode 100644 src/training/views.py diff --git a/src/climbing/__init__.py b/src/climbing/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/climbing/admin.py b/src/climbing/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/src/climbing/admin.py @@ -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 index 0000000..22b92e3 --- /dev/null +++ b/src/climbing/apps.py @@ -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 index 0000000..e69de29 diff --git a/src/climbing/models.py b/src/climbing/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/src/climbing/models.py @@ -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 index 0000000..7ce503c --- /dev/null +++ b/src/climbing/tests.py @@ -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 index 0000000..91ea44a --- /dev/null +++ b/src/climbing/views.py @@ -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 index 0000000..e69de29 diff --git a/src/nutrition/admin.py b/src/nutrition/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/src/nutrition/admin.py @@ -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 index 0000000..7d077c9 --- /dev/null +++ b/src/nutrition/apps.py @@ -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 index 0000000..e69de29 diff --git a/src/nutrition/models.py b/src/nutrition/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/src/nutrition/models.py @@ -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 index 0000000..7ce503c --- /dev/null +++ b/src/nutrition/tests.py @@ -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 index 0000000..91ea44a --- /dev/null +++ b/src/nutrition/views.py @@ -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 index 0000000..e69de29 diff --git a/src/training/admin.py b/src/training/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/src/training/admin.py @@ -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 index 0000000..8051e6c --- /dev/null +++ b/src/training/apps.py @@ -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 index 0000000..e69de29 diff --git a/src/training/models.py b/src/training/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/src/training/models.py @@ -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 index 0000000..7ce503c --- /dev/null +++ b/src/training/tests.py @@ -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 index 0000000..91ea44a --- /dev/null +++ b/src/training/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. -- 2.20.1