From 29d60411c134f458d9925a67546529867d287e0a Mon Sep 17 00:00:00 2001 From: s460930 Date: Mon, 14 Dec 2020 20:01:40 +0100 Subject: [PATCH] SMART-48 create new django app - project --- rest-app/smartpicasso/app/project/__init__.py | 0 rest-app/smartpicasso/app/project/admin.py | 3 +++ rest-app/smartpicasso/app/project/apps.py | 5 +++++ .../app/project/migrations/__init__.py | 0 rest-app/smartpicasso/app/project/models.py | 3 +++ rest-app/smartpicasso/app/project/tests.py | 3 +++ rest-app/smartpicasso/app/project/views.py | 3 +++ .../__pycache__/models.cpython-38.pyc | Bin 1266 -> 1266 bytes rest-app/smartpicasso/settings.py | 3 ++- 9 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 rest-app/smartpicasso/app/project/__init__.py create mode 100644 rest-app/smartpicasso/app/project/admin.py create mode 100644 rest-app/smartpicasso/app/project/apps.py create mode 100644 rest-app/smartpicasso/app/project/migrations/__init__.py create mode 100644 rest-app/smartpicasso/app/project/models.py create mode 100644 rest-app/smartpicasso/app/project/tests.py create mode 100644 rest-app/smartpicasso/app/project/views.py diff --git a/rest-app/smartpicasso/app/project/__init__.py b/rest-app/smartpicasso/app/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/rest-app/smartpicasso/app/project/admin.py b/rest-app/smartpicasso/app/project/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/rest-app/smartpicasso/app/project/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/rest-app/smartpicasso/app/project/apps.py b/rest-app/smartpicasso/app/project/apps.py new file mode 100644 index 0000000..e50f77b --- /dev/null +++ b/rest-app/smartpicasso/app/project/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class ProjectConfig(AppConfig): + name = 'smartpicasso.app.project' diff --git a/rest-app/smartpicasso/app/project/migrations/__init__.py b/rest-app/smartpicasso/app/project/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/rest-app/smartpicasso/app/project/models.py b/rest-app/smartpicasso/app/project/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/rest-app/smartpicasso/app/project/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/rest-app/smartpicasso/app/project/tests.py b/rest-app/smartpicasso/app/project/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/rest-app/smartpicasso/app/project/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/rest-app/smartpicasso/app/project/views.py b/rest-app/smartpicasso/app/project/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/rest-app/smartpicasso/app/project/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/rest-app/smartpicasso/app/user_profile/__pycache__/models.cpython-38.pyc b/rest-app/smartpicasso/app/user_profile/__pycache__/models.cpython-38.pyc index 615a5950e9d2ebf7c76a343adbdb1d744eb65d7e..47aca4f6911dfe8fc17bf8b2d27d4d5b0d346a61 100644 GIT binary patch delta 19 Zcmeyw`H7P&l$V!_0SI=rZRC2v0suAa1z`XH delta 19 Zcmeyw`H7P&l$V!_0SG2BY~*^u0st~z1hW7D diff --git a/rest-app/smartpicasso/settings.py b/rest-app/smartpicasso/settings.py index ee23a99..fee38e9 100644 --- a/rest-app/smartpicasso/settings.py +++ b/rest-app/smartpicasso/settings.py @@ -38,7 +38,8 @@ INSTALLED_APPS = [ 'django.contrib.staticfiles', 'smartpicasso.app.user', - 'smartpicasso.app.user_profile' + 'smartpicasso.app.user_profile', + 'smartpicasso.app.project' ] MIDDLEWARE = [