Switch hub endpoints to use the hub `name` slug and update frontend routes/clients accordingly. Backend: HubViewSet now uses lookup_field='name'; PostViewSet list supports `sort=top` with vote_score annotation and time windows/custom ranges, and a new TopPostsCursorPagination was added. Frontend: routes changed from `/hub/:id` to `/h/:name`, the generated hubs API was updated from id->name, and the hub feed client accepts `sort`, `time`, `start`, and `end` params (query key updated). Also adds new homepage UI components (HeroSection, DroneSection) and navbar improvements (scroll state, auto-close mobile menu on route changes, and small icon/class tweaks).
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
Languages
TypeScript
72.4%
Python
22.3%
HTML
2.6%
CSS
2.1%
JavaScript
0.5%