change: change apps folder

This commit is contained in:
behruz-dev
2025-08-28 14:21:12 +05:00
parent ccfe0d6c18
commit 53042ed25e
31 changed files with 68 additions and 42 deletions

View File

@@ -1,3 +0,0 @@
from django.contrib import admin
# Register your models here.

View File

View File

@@ -3,4 +3,4 @@ from django.apps import AppConfig
class OrdersConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'orders'
name = 'core.apps.orders'

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

View File

View File

@@ -1,3 +0,0 @@
from django.test import TestCase
# Create your tests here.

6
core/apps/orders/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path, include
urlpatterns = [
]

View File

@@ -1,3 +0,0 @@
from django.shortcuts import render
# Create your views here.

View File