mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 22:12:23 +00:00
dd5ee8120f
- Fix Export/Import API token authentication (wasn't sending X-API-Token header) - Add client-side passphrase validation (12+ chars with visual feedback) - Fix settings persistence for AllowedOrigins field - Fix hardcoded port display in diagnostics (now shows actual port) - Add .env file support for non-sensitive configuration (ports, logging, etc) - Keep sensitive data (API tokens, passwords) using secure methods (systemd env vars) - Update documentation with configuration guide and latest features - Document auto-discovery, cluster detection, and export/import features
22 lines
542 B
Modula-2
22 lines
542 B
Modula-2
module github.com/rcourtman/pulse-go-rewrite
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/spf13/cobra v1.9.1
|
|
golang.org/x/crypto v0.23.0
|
|
golang.org/x/term v0.20.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/joho/godotenv v1.5.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/spf13/pflag v1.0.7 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
)
|