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 615a595..47aca4f 100644 Binary files a/rest-app/smartpicasso/app/user_profile/__pycache__/models.cpython-38.pyc and b/rest-app/smartpicasso/app/user_profile/__pycache__/models.cpython-38.pyc differ 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 = [