From e1a92f227327c1f595dce350363b62d27fd6da6e Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 21 Jan 2021 10:10:50 +0000 Subject: [PATCH] created basic apps --- .gitignore | 3 +++ companies/__init__.py | 0 companies/admin.py | 3 +++ companies/apps.py | 5 +++++ companies/migrations/__init__.py | 0 companies/models.py | 3 +++ companies/tests.py | 3 +++ companies/views.py | 3 +++ core/__init__.py | 0 core/admin.py | 3 +++ core/apps.py | 5 +++++ core/migrations/__init__.py | 0 core/models.py | 3 +++ core/tests.py | 3 +++ core/views.py | 3 +++ history/__init__.py | 0 history/admin.py | 3 +++ history/apps.py | 5 +++++ history/migrations/__init__.py | 0 history/models.py | 3 +++ history/tests.py | 3 +++ history/views.py | 3 +++ products/__init__.py | 0 products/admin.py | 3 +++ products/apps.py | 5 +++++ products/migrations/__init__.py | 0 products/models.py | 3 +++ products/tests.py | 3 +++ products/views.py | 3 +++ stats/__init__.py | 0 stats/admin.py | 3 +++ stats/apps.py | 5 +++++ stats/migrations/__init__.py | 0 stats/models.py | 3 +++ stats/tests.py | 3 +++ stats/views.py | 3 +++ 36 files changed, 88 insertions(+) create mode 100644 companies/__init__.py create mode 100644 companies/admin.py create mode 100644 companies/apps.py create mode 100644 companies/migrations/__init__.py create mode 100644 companies/models.py create mode 100644 companies/tests.py create mode 100644 companies/views.py create mode 100644 core/__init__.py create mode 100644 core/admin.py create mode 100644 core/apps.py create mode 100644 core/migrations/__init__.py create mode 100644 core/models.py create mode 100644 core/tests.py create mode 100644 core/views.py create mode 100644 history/__init__.py create mode 100644 history/admin.py create mode 100644 history/apps.py create mode 100644 history/migrations/__init__.py create mode 100644 history/models.py create mode 100644 history/tests.py create mode 100644 history/views.py create mode 100644 products/__init__.py create mode 100644 products/admin.py create mode 100644 products/apps.py create mode 100644 products/migrations/__init__.py create mode 100644 products/models.py create mode 100644 products/tests.py create mode 100644 products/views.py create mode 100644 stats/__init__.py create mode 100644 stats/admin.py create mode 100644 stats/apps.py create mode 100644 stats/migrations/__init__.py create mode 100644 stats/models.py create mode 100644 stats/tests.py create mode 100644 stats/views.py diff --git a/.gitignore b/.gitignore index b24d71e..6769f52 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ # Learn more about .gitignore: # https://www.atlassian.com/git/tutorials/saving-changes/gitignore +# VSCode +.vscode/ + # Node artifact files node_modules/ dist/ diff --git a/companies/__init__.py b/companies/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/companies/admin.py b/companies/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/companies/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/companies/apps.py b/companies/apps.py new file mode 100644 index 0000000..0acc248 --- /dev/null +++ b/companies/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class CompaniesConfig(AppConfig): + name = 'companies' diff --git a/companies/migrations/__init__.py b/companies/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/companies/models.py b/companies/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/companies/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/companies/tests.py b/companies/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/companies/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/companies/views.py b/companies/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/companies/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/core/__init__.py b/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/core/admin.py b/core/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/core/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/core/apps.py b/core/apps.py new file mode 100644 index 0000000..26f78a8 --- /dev/null +++ b/core/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class CoreConfig(AppConfig): + name = 'core' diff --git a/core/migrations/__init__.py b/core/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/core/models.py b/core/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/core/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/core/tests.py b/core/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/core/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/core/views.py b/core/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/core/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/history/__init__.py b/history/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/history/admin.py b/history/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/history/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/history/apps.py b/history/apps.py new file mode 100644 index 0000000..246c1da --- /dev/null +++ b/history/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class HistoryConfig(AppConfig): + name = 'history' diff --git a/history/migrations/__init__.py b/history/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/history/models.py b/history/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/history/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/history/tests.py b/history/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/history/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/history/views.py b/history/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/history/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/products/__init__.py b/products/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/products/admin.py b/products/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/products/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/products/apps.py b/products/apps.py new file mode 100644 index 0000000..864c43e --- /dev/null +++ b/products/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ProductsConfig(AppConfig): + name = 'products' diff --git a/products/migrations/__init__.py b/products/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/products/models.py b/products/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/products/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/products/tests.py b/products/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/products/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/products/views.py b/products/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/products/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/stats/__init__.py b/stats/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/stats/admin.py b/stats/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/stats/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/stats/apps.py b/stats/apps.py new file mode 100644 index 0000000..2d09b92 --- /dev/null +++ b/stats/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class StatsConfig(AppConfig): + name = 'stats' diff --git a/stats/migrations/__init__.py b/stats/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/stats/models.py b/stats/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/stats/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/stats/tests.py b/stats/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/stats/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/stats/views.py b/stats/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/stats/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.