init django

This commit is contained in:
2025-12-26 17:10:20 +03:00
parent 5b5cc233b5
commit d3f1f2691f
11 changed files with 240 additions and 0 deletions

View File

View File

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

View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class TypographConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'typograph'

View File

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

View File

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