diff --git a/core/settings.py b/core/settings.py index fa505c8..c4e24c6 100644 --- a/core/settings.py +++ b/core/settings.py @@ -36,7 +36,6 @@ INSTALLED_APPS = [ 'django.contrib.staticfiles', 'inventory', 'transaction', - 'user', ] MIDDLEWARE = [ diff --git a/sample.env b/sample.env index e69de29..6e7884a 100644 --- a/sample.env +++ b/sample.env @@ -0,0 +1,8 @@ +SECRET_KEY=your_secret_key +DEBUG=True +ALLOWED_HOSTS=localhost, 127.0.0.1, ::1 +DB_NAME=your_DB_NAME +DB_USER=your_DB_USER +DB_PASSWORD=your_DB_PASSWORD +DB_HOST=your_DB_HOST +DB_PORT=your_DB_PORT \ No newline at end of file diff --git a/user/__init__.py b/user/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/user/admin.py b/user/admin.py deleted file mode 100644 index 8c38f3f..0000000 --- a/user/admin.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.contrib import admin - -# Register your models here. diff --git a/user/apps.py b/user/apps.py deleted file mode 100644 index 36cce4c..0000000 --- a/user/apps.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.apps import AppConfig - - -class UserConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'user' diff --git a/user/migrations/__init__.py b/user/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/user/models.py b/user/models.py deleted file mode 100644 index 71a8362..0000000 --- a/user/models.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/user/tests.py b/user/tests.py deleted file mode 100644 index 7ce503c..0000000 --- a/user/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/user/views.py b/user/views.py deleted file mode 100644 index 91ea44a..0000000 --- a/user/views.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.shortcuts import render - -# Create your views here.