Add Django project

This commit is contained in:
2023-12-23 22:52:34 +01:00
parent e10ea4eb07
commit 4e241e44ab
12 changed files with 192 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 TwitchDropNotifierConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "twitch_drop_notifier"

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.