added person app
All checks were successful
Django Backend Validation / build (debian-latest, 3.10) (push) Successful in 29s
Django Backend Validation / build (debian-latest, 3.11) (push) Successful in 24s
Django Backend Validation / build (debian-latest, 3.12) (push) Successful in 19s
Django Backend Validation / build (ubuntu-latest, 3.10) (push) Successful in 12s
Django Backend Validation / build (ubuntu-latest, 3.11) (push) Successful in 12s
Django Backend Validation / build (ubuntu-latest, 3.12) (push) Successful in 13s
All checks were successful
Django Backend Validation / build (debian-latest, 3.10) (push) Successful in 29s
Django Backend Validation / build (debian-latest, 3.11) (push) Successful in 24s
Django Backend Validation / build (debian-latest, 3.12) (push) Successful in 19s
Django Backend Validation / build (ubuntu-latest, 3.10) (push) Successful in 12s
Django Backend Validation / build (ubuntu-latest, 3.11) (push) Successful in 12s
Django Backend Validation / build (ubuntu-latest, 3.12) (push) Successful in 13s
Signed-off-by: Jochen Mehlich <coding@jochenmehlich.de>
This commit is contained in:
parent
efc9b8e10b
commit
c4fe55246b
0
person/__init__.py
Normal file
0
person/__init__.py
Normal file
3
person/admin.py
Normal file
3
person/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
person/apps.py
Normal file
6
person/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class PersonConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'person'
|
||||
0
person/migrations/__init__.py
Normal file
0
person/migrations/__init__.py
Normal file
3
person/models.py
Normal file
3
person/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
person/tests.py
Normal file
3
person/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
person/views.py
Normal file
3
person/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Loading…
x
Reference in New Issue
Block a user