ENV: Creación aplicacin Django

This commit is contained in:
2024-06-22 09:52:44 -05:00
parent 2d6b32dba0
commit e77b426044
13 changed files with 217 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 DonConfiaoConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'don_confiao'

View File

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

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.