Add initial chzzk app structure and configuration
Some checks failed
Deploy to Server / deploy (push) Has been cancelled

This commit is contained in:
Joakim Hellsén 2026-03-30 17:00:10 +02:00
commit f605ea9f55
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
7 changed files with 8 additions and 0 deletions

View file

@ -10,6 +10,7 @@
"buildx", "buildx",
"chatbadge", "chatbadge",
"chatbadgeset", "chatbadgeset",
"chzzk",
"collectstatic", "collectstatic",
"colorama", "colorama",
"createsuperuser", "createsuperuser",

0
chzzk/__init__.py Normal file
View file

7
chzzk/apps.py Normal file
View file

@ -0,0 +1,7 @@
from django.apps import AppConfig
class ChzzkConfig(AppConfig):
"""Config for chzzk app."""
name = "chzzk"

View file

0
chzzk/models.py Normal file
View file

0
chzzk/tests/__init__.py Normal file
View file

0
chzzk/views.py Normal file
View file