Chương trình xem kết quả xổ số kiến thiết Việt Nam cho Android, Linux, Windows
Xem kết quả xổ số theo khu vực
Xem kết quả xổ số theo ngày
Chạy đa nền tảng (Android, Linux, Windows)
Hỗ trợ API (Hỗ trợ API Key)
Run command: ./KetQuaXoSo --api
Open Website: http://localhost:8080/docs/index.html
Debian Or Ubuntu Base
libgl1 libx11-6 libglfw3
curl -fsSL https://dopaemon.github.io/PPA/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/dopaemon.gpg
echo " deb [signed-by=/usr/share/keyrings/dopaemon.gpg] https://dopaemon.github.io/PPA ./" | sudo tee /etc/apt/sources.list.d/dopaemon.list
Install Package and Running:
Install Packages Request:
sudo apt-get install libgl1 libx11-6 libglfw3 -y
sudo apt-get install ketquaxoso -y
docker build -t kqxs-api .
docker run -d --name kqxs-api -p 8080:8080 -v $( pwd) /example.env:/app/.env:ro kqxs-api
Build and run Docker Composer:
docker compose up -d --build
docker pull ghcr.io/dopaemon/ketquaxoso:alpine
Run Container From Image From Ghcr.io:
docker run -d \
--name kqxs-api \
-p 8080:8080 \
-v $( pwd) /example.env:/app/.env:ro \
ghcr.io/dopaemon/ketquaxoso:alpine
GoLang: 1.25
Fyne v2.6.3
Linux server
Cmake
git clone -b main --single-branch https://github.com/dopaemon/KetQuaXoSo.git
sudo apt update
sudo apt-get install -y mingw-w64 build-essential pkg-config libgl1-mesa-dev xorg-dev libx11-dev gcc-aarch64-linux-gnu
./
├── Dockerfile
├── LICENSE
├── Makefile
├── README.md
├── SECURITY.md
├── assets
│ └── Icon.png
├── debian
│ ├── changelog
│ ├── control
│ ├── copyright
│ └── rules
├── docker-compose.yml
├── docs
│ ├── docs.go
│ ├── swagger.json
│ └── swagger.yaml
├── example.env
├── go.mod
├── go.sum
├── internal
│ ├── api
│ │ └── api.go
│ ├── configs
│ │ └── configs.go
│ └── rss
│ ├── fetcher.go
│ ├── parser.go
│ └── sources.go
├── main.go
├── main_api.go
├── ui
│ ├── common.go
│ ├── desktop.go
│ ├── mobile.go
│ └── tui.go
├── utils
│ ├── CheckWinningNumber.go
│ ├── banner.go
│ └── flags.go
└── vendor
├── fyne.io
├── github.com
├── golang.org
├── google.golang.org
├── gopkg.in
└── modules.txt
The MIT License (MIT) © 2025 dopaemon <polarisdp@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.