Compare commits

...

2 commits

Author SHA1 Message Date
f605ea9f55
Add initial chzzk app structure and configuration
Some checks failed
Deploy to Server / deploy (push) Has been cancelled
2026-03-30 17:00:10 +02:00
f1ee0528e6
Update ruff-pre-commit version to v0.15.8 2026-03-30 16:59:04 +02:00
8 changed files with 9 additions and 1 deletions

View file

@ -27,7 +27,7 @@ repos:
args: [--target-version, "6.0"] args: [--target-version, "6.0"]
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.5 rev: v0.15.8
hooks: hooks:
- id: ruff-check - id: ruff-check
args: ["--fix", "--exit-non-zero-on-fix"] args: ["--fix", "--exit-non-zero-on-fix"]

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