Brunobrno 3d1965e5e6 Add chat settings modal & reply previews
Introduce a full ChatSettingsModal component for managing group chats (rename/icon upload, add/remove members, toggle moderators, leave/delete) and wire it into ChatRoomPage with a settings button. Add reply preview support end-to-end: new ReplyToSerializer and members_detail in backend serializers, updated frontend Message model (reply_to now contains preview object), and UI changes to Message to render reply excerpts. Improve socket handling to attach reply previews when available. Tweak backend Dockerfile to optionally install Windows/corporate CA bundle only if present and move pip install after copying source. Add Czech translations and small tooling/.claude config enhancements.
2026-05-29 00:41:43 +02:00
2026-01-06 16:42:29 +01:00
2026-04-23 00:36:57 +02:00
2026-05-28 17:23:04 +02:00
2026-04-23 00:36:57 +02:00
2026-05-28 17:23:04 +02:00
2026-05-28 17:23:04 +02:00

vontor.cz

Czech e-marketplace — Django backend + React frontend.

Requirements

  • Docker Desktop
  • Node.js 22+ (frontend dev)
  • Python 3.12+ (backend dev)

Running locally

docker-compose up

Frontend dev server:

cd frontend && npm install && npm run dev

Docker — corporate / custom CA certificates

If your network uses SSL inspection (corporate proxy, Tailscale, etc.) the Docker build will fail with SSL errors when fetching packages.

Fix: export your Windows Root CA store into the build context once:

New-Item -Force -ItemType Directory backend\certs | Out-Null; $s = [Security.Cryptography.X509Certificates.X509Store]::new("Root","LocalMachine"); $s.Open("ReadOnly"); $s.Certificates | % { "-----BEGIN CERTIFICATE-----`n" + [Convert]::ToBase64String($_.RawData,"InsertLineBreaks") + "`n-----END CERTIFICATE-----" } | Out-File -Encoding ascii backend\certs\windows-ca-bundle.crt; $s.Close()

The file is git-ignored. Re-run the command whenever your CA store changes.

Description
No description provided
https://vontor.cz
Readme 12 MiB
Languages
CSS 44.4%
Python 25.7%
JavaScript 18.4%
HTML 11.5%