mirror of
https://github.com/Sosokker/Inventory-Management-System.git
synced 2025-12-18 15:14:05 +01:00
Remove users app / Add sample.env sample
This commit is contained in:
parent
5a95ef6143
commit
9d3947d3b7
@ -36,7 +36,6 @@ INSTALLED_APPS = [
|
||||
'django.contrib.staticfiles',
|
||||
'inventory',
|
||||
'transaction',
|
||||
'user',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
||||
@ -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
|
||||
@ -1,3 +0,0 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
@ -1,6 +0,0 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class UserConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'user'
|
||||
@ -1,3 +0,0 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
@ -1,3 +0,0 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
@ -1,3 +0,0 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Loading…
Reference in New Issue
Block a user