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.