]> git.mar77i.info Git - chat/commit
initial commit
authormar77i <mar77i@protonmail.ch>
Tue, 7 Apr 2026 21:35:39 +0000 (23:35 +0200)
committermar77i <mar77i@protonmail.ch>
Fri, 24 Apr 2026 11:39:13 +0000 (13:39 +0200)
commit7eb3edaab0247e228e39aa45e2ae5f975a7fe394
tree062439ecfd59a6a571cedb7e2ca455146b6127d9
initial commit
49 files changed:
.gitignore [new file with mode: 0644]
.pre-commit-config.yaml [new file with mode: 0644]
channel/__init__.py [new file with mode: 0644]
channel/admin.py [new file with mode: 0644]
channel/apps.py [new file with mode: 0644]
channel/migrations/0001_initial.py [new file with mode: 0644]
channel/migrations/0002_initial.py [new file with mode: 0644]
channel/migrations/__init__.py [new file with mode: 0644]
channel/models.py [new file with mode: 0644]
channel/signals.py [new file with mode: 0644]
channel/templates/channel/main.html [new file with mode: 0644]
channel/tests.py [new file with mode: 0644]
channel/urls.py [new file with mode: 0644]
channel/views.py [new file with mode: 0644]
chat/__init__.py [new file with mode: 0644]
chat/apps.py [new file with mode: 0644]
chat/asgi.py [new file with mode: 0644]
chat/bridge.py [new file with mode: 0644]
chat/management/__init__.py [new file with mode: 0644]
chat/management/commands/__init__.py [new file with mode: 0644]
chat/management/commands/db.py [new file with mode: 0644]
chat/management/commands/makemessages.py [new file with mode: 0644]
chat/management/commands/runuvicorn.py [new file with mode: 0644]
chat/settings.py [new file with mode: 0644]
chat/static/chat/chatutils.js [new file with mode: 0644]
chat/templates/chat/base.html [new file with mode: 0644]
chat/triggers.py [new file with mode: 0644]
chat/urls.py [new file with mode: 0644]
locales/de/LC_MESSAGES/django.po [new file with mode: 0644]
manage.py [new file with mode: 0755]
pyproject.toml [new file with mode: 0644]
readme.md [new file with mode: 0644]
scripts/deploy.sh [new file with mode: 0755]
scripts/deploy_remote.py [new file with mode: 0755]
scripts/pyjslint.py [new file with mode: 0755]
scripts/sort_gitignore.sh [new file with mode: 0755]
setup_venv.sh [new file with mode: 0644]
user/__init__.py [new file with mode: 0644]
user/admin.py [new file with mode: 0644]
user/apps.py [new file with mode: 0644]
user/email.py [new file with mode: 0644]
user/forms.py [new file with mode: 0644]
user/migrations/0001_initial.py [new file with mode: 0644]
user/migrations/__init__.py [new file with mode: 0644]
user/models.py [new file with mode: 0644]
user/templates/user/user.html [new file with mode: 0644]
user/tests.py [new file with mode: 0644]
user/urls.py [new file with mode: 0644]
user/views.py [new file with mode: 0644]