init project

This commit is contained in:
2025-05-22 17:18:17 +02:00
commit 7fa6ecae22
22 changed files with 382 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 AuthenticationConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'authentication'

View File

@@ -0,0 +1,10 @@
from django.db import models
from django.contrib.auth.models import AbstractUser, Group
class User(AbstractUser):
pass

View File

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

View File

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