Primer commit

iniciando proyecto
This commit is contained in:
2023-02-16 11:40:04 +01:00
parent 667dc684c3
commit b07813a859
46 changed files with 1473 additions and 1 deletions

0
compra/__init__.py Normal file
View File

3
compra/admin.py Normal file
View File

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

6
compra/apps.py Normal file
View File

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

View File

3
compra/models.py Normal file
View File

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

3
compra/tests.py Normal file
View File

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

3
compra/views.py Normal file
View File

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