mirror of
https://github.com/hhftechnology/middleware-manager.git
synced 2026-07-10 00:18:24 +00:00
Introduce a standalone Traefik Manager mode and SPA: new internal/traefikmanager package (config, helpers, files, settings, runtime, handlers, server, types) with tests and supporting testdata; add a new React/TypeScript SPA under traefik-ui/ (components, pages, build config, tests). Update build & packaging: modify Dockerfile to build the traefik-ui app and include it in the final image, add new Makefile targets for building/running both UIs and modes, and add a traefik-manager service to docker-compose (with MODE env). Add runtime config loading and README docs for the new MODE, plus .gitignore entries for traefik-ui artifacts. Small updates to main.go and added traefik_mode.go.
56 lines
785 B
Text
56 lines
785 B
Text
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
middleware-manager
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Node modules and builds
|
|
ui/node_modules/
|
|
ui/dist/
|
|
traefik-ui/node_modules/
|
|
traefik-ui/dist/
|
|
|
|
# Compiled vite config artifacts
|
|
ui/vite.config.js
|
|
ui/vite.config.d.ts
|
|
traefik-ui/vite.config.js
|
|
traefik-ui/vite.config.d.ts
|
|
|
|
# SQLite database
|
|
*.db
|
|
|
|
# Generated configuration files
|
|
/conf/
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Data directories
|
|
/data/
|