Scaffold project structure

This commit is contained in:
2026-05-12 17:05:08 +03:00
commit 94e0396380
39 changed files with 1723 additions and 0 deletions

View File

3
apps/dashboard/admin.py Normal file
View File

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

5
apps/dashboard/apps.py Normal file
View File

@@ -0,0 +1,5 @@
from django.apps import AppConfig
class DashboardConfig(AppConfig):
name = "dashboard"

View File

3
apps/dashboard/models.py Normal file
View File

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

3
apps/dashboard/tests.py Normal file
View File

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

3
apps/dashboard/views.py Normal file
View File

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