Prepare new django-based backend

- django-admin startproject zetikettes
- python3 manage.py startapp tikette
This commit is contained in:
2023-07-03 16:31:31 +02:00
parent a62ecd15d7
commit 7ccfef49d5
19 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 TiketteConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'tikette'

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.