refactor: rename module to pipely and migrate web UI to MUI

- Rename Go module from onixbyte.com/message-converter-manifest to onixbyte.com/pipely
- Replace shadcn UI with Material UI components across all pages
- Add axios-based API client in shared/web-client with credentials management
- Organise API calls into feature modules: auth, devices, deployments, artefacts, users
- Add .env.example with VITE_API_BASE_URL pointing to pipely.onixbyte.com
- Fix deprecated FormEvent → MouseEvent in dialog submit handlers
This commit is contained in:
2026-07-07 14:40:09 +08:00
parent 5b0f33320e
commit 033082954a
44 changed files with 4240 additions and 1152 deletions
+9 -9
View File
@@ -11,15 +11,15 @@ import (
"github.com/gin-gonic/gin"
"onixbyte.com/message-converter-manifest/internal/artefact"
"onixbyte.com/message-converter-manifest/internal/auth"
"onixbyte.com/message-converter-manifest/internal/config"
"onixbyte.com/message-converter-manifest/internal/database"
"onixbyte.com/message-converter-manifest/internal/delta"
"onixbyte.com/message-converter-manifest/internal/deployment"
"onixbyte.com/message-converter-manifest/internal/device"
"onixbyte.com/message-converter-manifest/internal/download"
"onixbyte.com/message-converter-manifest/internal/middleware"
"onixbyte.com/pipely/internal/artefact"
"onixbyte.com/pipely/internal/auth"
"onixbyte.com/pipely/internal/config"
"onixbyte.com/pipely/internal/database"
"onixbyte.com/pipely/internal/delta"
"onixbyte.com/pipely/internal/deployment"
"onixbyte.com/pipely/internal/device"
"onixbyte.com/pipely/internal/download"
"onixbyte.com/pipely/internal/middleware"
)
func main() {