chzzk #1

Merged
TheLovinator merged 8 commits from chzzk into master 2026-04-01 04:09:20 +02:00
7 changed files with 8 additions and 0 deletions
Showing only changes of commit f605ea9f55 - Show all commits

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

Joakim Hellsén 2026-03-30 17:00:10 +02:00
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk

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