https://github.com/sir-go/doroga
WW2 veterans data collecting form and kiosk UI
https://github.com/sir-go/doroga
docker docker-compose fullstack go javascript kiosk mongodb
Last synced: 3 months ago
JSON representation
WW2 veterans data collecting form and kiosk UI
- Host: GitHub
- URL: https://github.com/sir-go/doroga
- Owner: sir-go
- License: mit
- Created: 2022-10-31T05:47:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-05T02:44:38.000Z (about 3 years ago)
- Last Synced: 2025-05-15T17:09:55.746Z (about 1 year ago)
- Topics: docker, docker-compose, fullstack, go, javascript, kiosk, mongodb
- Language: JavaScript
- Homepage:
- Size: 14.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# WW2 veterans memorial application form
I had got tasked with making an online form platform for collecting WW2 veterans'
data and installing a terminal for searching and reading this data near a city memorial.
https://doroga.ttnet.ru
## Backend
- Gin framework for API handling
- MongoDB as data storage (photos save on the local filesystem)
- ImageMagick for the images processing
- API
- POST new application (web form handling)
- GET (all applications with pagination or by ID)
- GET archived applications index
- GET archived applications for a specific date (for reporting)
## Frontend
Is a VueJS SPA
[sc-main.webm](https://user-images.githubusercontent.com/2155441/198938570-74a68a21-dc44-47b1-b077-f975177f2673.webm)
## Kiosk UI
The UI is made for a specific resolution for a kiosk mode running a browser on a street info kiosk
([Proteus Kiosk](https://porteus-kiosk.org) is used).
Has a custom virtual keyboard.
[sc-kiosk.webm](https://user-images.githubusercontent.com/2155441/198938598-37f04bd7-894b-49cb-a8c9-35711d08eb1c.webm)
## Config
Backend configuration loads from `config.toml` file.
## Tests
```bash
cd backend
gosec ./...
go test ./cmd/main
```
## Docker
```bash
docker compose up -d
```