3d5a4927a6
- Unified API and WebUI on single configurable port (default: 4567) - Added strix.yaml configuration file support (go2rtc-style format) - Environment variable STRIX_API_LISTEN overrides config file - Port validation and source logging - Relative URLs in frontend for automatic port detection - Removed separate server instances - Cleaned up temporary files and updated .gitignore - Updated documentation with configuration examples
28 lines
841 B
Modula-2
28 lines
841 B
Modula-2
module github.com/eduard256/Strix
|
|
|
|
go 1.24.0
|
|
|
|
toolchain go1.24.9
|
|
|
|
require (
|
|
github.com/IOTechSystems/onvif v1.2.0
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/go-playground/validator/v10 v10.28.0
|
|
github.com/lithammer/fuzzysearch v1.1.8
|
|
)
|
|
|
|
require (
|
|
github.com/beevik/etree v1.4.1 // indirect
|
|
github.com/clbanning/mxj/v2 v2.7.0 // indirect
|
|
github.com/elgs/gostrgen v0.0.0-20220325073726-0c3e00d082f6 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.10 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
golang.org/x/crypto v0.42.0 // indirect
|
|
golang.org/x/sys v0.36.0 // indirect
|
|
golang.org/x/text v0.29.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|