@friggframework/devtools 2.0.0-next.3 → 2.0.0-next.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/frigg-cli/.eslintrc.js +141 -0
- package/frigg-cli/__tests__/jest.config.js +102 -0
- package/frigg-cli/__tests__/unit/commands/build.test.js +483 -0
- package/frigg-cli/__tests__/unit/commands/install.test.js +418 -0
- package/frigg-cli/__tests__/unit/commands/ui.test.js +592 -0
- package/frigg-cli/__tests__/utils/command-tester.js +170 -0
- package/frigg-cli/__tests__/utils/mock-factory.js +270 -0
- package/frigg-cli/__tests__/utils/test-fixtures.js +463 -0
- package/frigg-cli/__tests__/utils/test-setup.js +286 -0
- package/frigg-cli/build-command/index.js +54 -0
- package/frigg-cli/deploy-command/index.js +36 -0
- package/frigg-cli/generate-command/__tests__/generate-command.test.js +312 -0
- package/frigg-cli/generate-command/azure-generator.js +43 -0
- package/frigg-cli/generate-command/gcp-generator.js +47 -0
- package/frigg-cli/generate-command/index.js +332 -0
- package/frigg-cli/generate-command/terraform-generator.js +555 -0
- package/frigg-cli/generate-iam-command.js +115 -0
- package/frigg-cli/index.js +47 -1
- package/frigg-cli/index.test.js +1 -4
- package/frigg-cli/init-command/backend-first-handler.js +756 -0
- package/frigg-cli/init-command/index.js +93 -0
- package/frigg-cli/init-command/template-handler.js +143 -0
- package/frigg-cli/install-command/index.js +1 -4
- package/frigg-cli/package.json +51 -0
- package/frigg-cli/start-command/index.js +24 -4
- package/frigg-cli/test/init-command.test.js +180 -0
- package/frigg-cli/test/npm-registry.test.js +319 -0
- package/frigg-cli/ui-command/index.js +154 -0
- package/frigg-cli/utils/app-resolver.js +319 -0
- package/frigg-cli/utils/backend-path.js +16 -17
- package/frigg-cli/utils/npm-registry.js +167 -0
- package/frigg-cli/utils/process-manager.js +199 -0
- package/frigg-cli/utils/repo-detection.js +405 -0
- package/infrastructure/AWS-DISCOVERY-TROUBLESHOOTING.md +245 -0
- package/infrastructure/AWS-IAM-CREDENTIAL-NEEDS.md +596 -0
- package/infrastructure/DEPLOYMENT-INSTRUCTIONS.md +268 -0
- package/infrastructure/GENERATE-IAM-DOCS.md +253 -0
- package/infrastructure/IAM-POLICY-TEMPLATES.md +176 -0
- package/infrastructure/README-TESTING.md +332 -0
- package/infrastructure/README.md +421 -0
- package/infrastructure/WEBSOCKET-CONFIGURATION.md +105 -0
- package/infrastructure/__tests__/fixtures/mock-aws-resources.js +391 -0
- package/infrastructure/__tests__/helpers/test-utils.js +277 -0
- package/infrastructure/aws-discovery.js +568 -0
- package/infrastructure/aws-discovery.test.js +373 -0
- package/infrastructure/build-time-discovery.js +206 -0
- package/infrastructure/build-time-discovery.test.js +375 -0
- package/infrastructure/create-frigg-infrastructure.js +3 -5
- package/infrastructure/frigg-deployment-iam-stack.yaml +379 -0
- package/infrastructure/iam-generator.js +687 -0
- package/infrastructure/iam-generator.test.js +169 -0
- package/infrastructure/iam-policy-basic.json +212 -0
- package/infrastructure/iam-policy-full.json +282 -0
- package/infrastructure/integration.test.js +383 -0
- package/infrastructure/run-discovery.js +110 -0
- package/infrastructure/serverless-template.js +923 -113
- package/infrastructure/serverless-template.test.js +541 -0
- package/management-ui/.eslintrc.js +22 -0
- package/management-ui/README.md +203 -0
- package/management-ui/components.json +21 -0
- package/management-ui/docs/phase2-integration-guide.md +320 -0
- package/management-ui/index.html +13 -0
- package/management-ui/package-lock.json +16517 -0
- package/management-ui/package.json +76 -0
- package/management-ui/packages/devtools/frigg-cli/ui-command/index.js +302 -0
- package/management-ui/postcss.config.js +6 -0
- package/management-ui/server/api/backend.js +256 -0
- package/management-ui/server/api/cli.js +315 -0
- package/management-ui/server/api/codegen.js +663 -0
- package/management-ui/server/api/connections.js +857 -0
- package/management-ui/server/api/discovery.js +185 -0
- package/management-ui/server/api/environment/index.js +1 -0
- package/management-ui/server/api/environment/router.js +378 -0
- package/management-ui/server/api/environment.js +328 -0
- package/management-ui/server/api/integrations.js +876 -0
- package/management-ui/server/api/logs.js +248 -0
- package/management-ui/server/api/monitoring.js +282 -0
- package/management-ui/server/api/open-ide.js +31 -0
- package/management-ui/server/api/project.js +1029 -0
- package/management-ui/server/api/users/sessions.js +371 -0
- package/management-ui/server/api/users/simulation.js +254 -0
- package/management-ui/server/api/users.js +362 -0
- package/management-ui/server/api-contract.md +275 -0
- package/management-ui/server/index.js +873 -0
- package/management-ui/server/middleware/errorHandler.js +93 -0
- package/management-ui/server/middleware/security.js +32 -0
- package/management-ui/server/processManager.js +296 -0
- package/management-ui/server/server.js +346 -0
- package/management-ui/server/services/aws-monitor.js +413 -0
- package/management-ui/server/services/npm-registry.js +347 -0
- package/management-ui/server/services/template-engine.js +538 -0
- package/management-ui/server/utils/cliIntegration.js +220 -0
- package/management-ui/server/utils/environment/auditLogger.js +471 -0
- package/management-ui/server/utils/environment/awsParameterStore.js +264 -0
- package/management-ui/server/utils/environment/encryption.js +278 -0
- package/management-ui/server/utils/environment/envFileManager.js +286 -0
- package/management-ui/server/utils/import-commonjs.js +28 -0
- package/management-ui/server/utils/response.js +83 -0
- package/management-ui/server/websocket/handler.js +325 -0
- package/management-ui/src/App.jsx +109 -0
- package/management-ui/src/assets/FriggLogo.svg +1 -0
- package/management-ui/src/components/AppRouter.jsx +65 -0
- package/management-ui/src/components/Button.jsx +70 -0
- package/management-ui/src/components/Card.jsx +97 -0
- package/management-ui/src/components/EnvironmentCompare.jsx +400 -0
- package/management-ui/src/components/EnvironmentEditor.jsx +372 -0
- package/management-ui/src/components/EnvironmentImportExport.jsx +469 -0
- package/management-ui/src/components/EnvironmentSchema.jsx +491 -0
- package/management-ui/src/components/EnvironmentSecurity.jsx +463 -0
- package/management-ui/src/components/ErrorBoundary.jsx +73 -0
- package/management-ui/src/components/IntegrationCard.jsx +481 -0
- package/management-ui/src/components/IntegrationCardEnhanced.jsx +770 -0
- package/management-ui/src/components/IntegrationExplorer.jsx +379 -0
- package/management-ui/src/components/IntegrationStatus.jsx +336 -0
- package/management-ui/src/components/Layout.jsx +716 -0
- package/management-ui/src/components/LoadingSpinner.jsx +113 -0
- package/management-ui/src/components/RepositoryPicker.jsx +248 -0
- package/management-ui/src/components/SessionMonitor.jsx +350 -0
- package/management-ui/src/components/StatusBadge.jsx +208 -0
- package/management-ui/src/components/UserContextSwitcher.jsx +212 -0
- package/management-ui/src/components/UserSimulation.jsx +327 -0
- package/management-ui/src/components/Welcome.jsx +434 -0
- package/management-ui/src/components/codegen/APIEndpointGenerator.jsx +637 -0
- package/management-ui/src/components/codegen/APIModuleSelector.jsx +227 -0
- package/management-ui/src/components/codegen/CodeGenerationWizard.jsx +247 -0
- package/management-ui/src/components/codegen/CodePreviewEditor.jsx +316 -0
- package/management-ui/src/components/codegen/DynamicModuleForm.jsx +271 -0
- package/management-ui/src/components/codegen/FormBuilder.jsx +737 -0
- package/management-ui/src/components/codegen/IntegrationGenerator.jsx +855 -0
- package/management-ui/src/components/codegen/ProjectScaffoldWizard.jsx +797 -0
- package/management-ui/src/components/codegen/SchemaBuilder.jsx +303 -0
- package/management-ui/src/components/codegen/TemplateSelector.jsx +586 -0
- package/management-ui/src/components/codegen/index.js +10 -0
- package/management-ui/src/components/connections/ConnectionConfigForm.jsx +362 -0
- package/management-ui/src/components/connections/ConnectionHealthMonitor.jsx +182 -0
- package/management-ui/src/components/connections/ConnectionTester.jsx +200 -0
- package/management-ui/src/components/connections/EntityRelationshipMapper.jsx +292 -0
- package/management-ui/src/components/connections/OAuthFlow.jsx +204 -0
- package/management-ui/src/components/connections/index.js +5 -0
- package/management-ui/src/components/index.js +21 -0
- package/management-ui/src/components/monitoring/APIGatewayMetrics.jsx +222 -0
- package/management-ui/src/components/monitoring/LambdaMetrics.jsx +169 -0
- package/management-ui/src/components/monitoring/MetricsChart.jsx +197 -0
- package/management-ui/src/components/monitoring/MonitoringDashboard.jsx +393 -0
- package/management-ui/src/components/monitoring/SQSMetrics.jsx +246 -0
- package/management-ui/src/components/monitoring/index.js +6 -0
- package/management-ui/src/components/monitoring/monitoring.css +218 -0
- package/management-ui/src/components/theme-provider.jsx +52 -0
- package/management-ui/src/components/theme-toggle.jsx +39 -0
- package/management-ui/src/components/ui/badge.tsx +36 -0
- package/management-ui/src/components/ui/button.test.jsx +56 -0
- package/management-ui/src/components/ui/button.tsx +57 -0
- package/management-ui/src/components/ui/card.tsx +76 -0
- package/management-ui/src/components/ui/dropdown-menu.tsx +199 -0
- package/management-ui/src/components/ui/select.tsx +157 -0
- package/management-ui/src/components/ui/skeleton.jsx +15 -0
- package/management-ui/src/hooks/useFrigg.jsx +601 -0
- package/management-ui/src/hooks/useSocket.jsx +58 -0
- package/management-ui/src/index.css +193 -0
- package/management-ui/src/lib/utils.ts +6 -0
- package/management-ui/src/main.jsx +10 -0
- package/management-ui/src/pages/CodeGeneration.jsx +14 -0
- package/management-ui/src/pages/Connections.jsx +252 -0
- package/management-ui/src/pages/ConnectionsEnhanced.jsx +633 -0
- package/management-ui/src/pages/Dashboard.jsx +311 -0
- package/management-ui/src/pages/Environment.jsx +314 -0
- package/management-ui/src/pages/IntegrationConfigure.jsx +669 -0
- package/management-ui/src/pages/IntegrationDiscovery.jsx +567 -0
- package/management-ui/src/pages/IntegrationTest.jsx +742 -0
- package/management-ui/src/pages/Integrations.jsx +253 -0
- package/management-ui/src/pages/Monitoring.jsx +17 -0
- package/management-ui/src/pages/Simulation.jsx +155 -0
- package/management-ui/src/pages/Users.jsx +492 -0
- package/management-ui/src/services/api.js +41 -0
- package/management-ui/src/services/apiModuleService.js +193 -0
- package/management-ui/src/services/websocket-handlers.js +120 -0
- package/management-ui/src/test/api/project.test.js +273 -0
- package/management-ui/src/test/components/Welcome.test.jsx +378 -0
- package/management-ui/src/test/mocks/server.js +178 -0
- package/management-ui/src/test/setup.js +61 -0
- package/management-ui/src/test/utils/test-utils.jsx +134 -0
- package/management-ui/src/utils/repository.js +98 -0
- package/management-ui/src/utils/repository.test.js +118 -0
- package/management-ui/src/workflows/phase2-integration-workflows.js +884 -0
- package/management-ui/tailwind.config.js +63 -0
- package/management-ui/tsconfig.json +37 -0
- package/management-ui/tsconfig.node.json +10 -0
- package/management-ui/vite.config.js +26 -0
- package/management-ui/vitest.config.js +38 -0
- package/package.json +16 -9
- package/infrastructure/app-handler-helpers.js +0 -57
- package/infrastructure/backend-utils.js +0 -90
- package/infrastructure/routers/auth.js +0 -26
- package/infrastructure/routers/integration-defined-routers.js +0 -37
- package/infrastructure/routers/middleware/loadUser.js +0 -15
- package/infrastructure/routers/middleware/requireLoggedInUser.js +0 -12
- package/infrastructure/routers/user.js +0 -41
- package/infrastructure/routers/websocket.js +0 -55
- package/infrastructure/workers/integration-defined-workers.js +0 -24
|
@@ -0,0 +1,873 @@
|
|
|
1
|
+
import express from 'express'
|
|
2
|
+
import { createServer } from 'http'
|
|
3
|
+
import { Server } from 'socket.io'
|
|
4
|
+
import cors from 'cors'
|
|
5
|
+
import path from 'path'
|
|
6
|
+
import { fileURLToPath } from 'url'
|
|
7
|
+
import { spawn } from 'child_process'
|
|
8
|
+
import fs from 'fs/promises'
|
|
9
|
+
import processManager from './processManager.js'
|
|
10
|
+
import cliIntegration from './utils/cliIntegration.js'
|
|
11
|
+
|
|
12
|
+
const __filename = fileURLToPath(import.meta.url)
|
|
13
|
+
const __dirname = path.dirname(__filename)
|
|
14
|
+
|
|
15
|
+
<<<<<<< HEAD
|
|
16
|
+
<<<<<<< HEAD
|
|
17
|
+
=======
|
|
18
|
+
<<<<<<< HEAD
|
|
19
|
+
<<<<<<< HEAD
|
|
20
|
+
=======
|
|
21
|
+
>>>>>>> f153939e (refactor: clean up CLI help display and remove unused dependencies)
|
|
22
|
+
>>>>>>> 860052b4 (feat: integrate complete management-ui and additional features)
|
|
23
|
+
=======
|
|
24
|
+
>>>>>>> 7e97f01c (fix: resolve ui-command merge conflicts and update package.json)
|
|
25
|
+
class FriggManagementServer {
|
|
26
|
+
constructor(options = {}) {
|
|
27
|
+
this.port = options.port || process.env.PORT || 3001
|
|
28
|
+
this.projectRoot = options.projectRoot || process.cwd()
|
|
29
|
+
this.repositoryInfo = options.repositoryInfo || null
|
|
30
|
+
this.app = null
|
|
31
|
+
this.httpServer = null
|
|
32
|
+
this.io = null
|
|
33
|
+
this.mockIntegrations = []
|
|
34
|
+
this.mockUsers = []
|
|
35
|
+
this.mockConnections = []
|
|
36
|
+
this.envVariables = {}
|
|
37
|
+
<<<<<<< HEAD
|
|
38
|
+
<<<<<<< HEAD
|
|
39
|
+
=======
|
|
40
|
+
<<<<<<< HEAD
|
|
41
|
+
>>>>>>> 860052b4 (feat: integrate complete management-ui and additional features)
|
|
42
|
+
=======
|
|
43
|
+
>>>>>>> 7e97f01c (fix: resolve ui-command merge conflicts and update package.json)
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
async start() {
|
|
47
|
+
this.app = express()
|
|
48
|
+
this.httpServer = createServer(this.app)
|
|
49
|
+
this.io = new Server(this.httpServer, {
|
|
50
|
+
cors: {
|
|
51
|
+
origin: ["http://localhost:5173", "http://localhost:3000"],
|
|
52
|
+
methods: ["GET", "POST"]
|
|
53
|
+
}
|
|
54
|
+
})
|
|
55
|
+
|
|
56
|
+
this.setupMiddleware()
|
|
57
|
+
this.setupSocketIO()
|
|
58
|
+
this.setupRoutes()
|
|
59
|
+
this.setupStaticFiles()
|
|
60
|
+
|
|
61
|
+
return new Promise((resolve, reject) => {
|
|
62
|
+
this.httpServer.listen(this.port, (err) => {
|
|
63
|
+
if (err) {
|
|
64
|
+
reject(err)
|
|
65
|
+
} else {
|
|
66
|
+
console.log(`Management UI server running on port ${this.port}`)
|
|
67
|
+
if (this.repositoryInfo) {
|
|
68
|
+
console.log(`Connected to repository: ${this.repositoryInfo.name}`)
|
|
69
|
+
}
|
|
70
|
+
resolve()
|
|
71
|
+
}
|
|
72
|
+
})
|
|
73
|
+
})
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
setupMiddleware() {
|
|
77
|
+
this.app.use(cors())
|
|
78
|
+
this.app.use(express.json())
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
setupSocketIO() {
|
|
82
|
+
// Set up process manager listeners
|
|
83
|
+
processManager.addStatusListener((data) => {
|
|
84
|
+
this.io.emit('frigg:status', data)
|
|
85
|
+
|
|
86
|
+
// Also emit logs if present
|
|
87
|
+
if (data.log) {
|
|
88
|
+
this.io.emit('frigg:log', data.log)
|
|
89
|
+
}
|
|
90
|
+
})
|
|
91
|
+
|
|
92
|
+
// Socket.IO connection handling
|
|
93
|
+
this.io.on('connection', (socket) => {
|
|
94
|
+
console.log('Client connected:', socket.id)
|
|
95
|
+
|
|
96
|
+
// Send initial status
|
|
97
|
+
socket.emit('frigg:status', processManager.getStatus())
|
|
98
|
+
|
|
99
|
+
// Send recent logs
|
|
100
|
+
const recentLogs = processManager.getLogs(50)
|
|
101
|
+
if (recentLogs.length > 0) {
|
|
102
|
+
socket.emit('frigg:logs', recentLogs)
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
socket.on('disconnect', () => {
|
|
106
|
+
console.log('Client disconnected:', socket.id)
|
|
107
|
+
})
|
|
108
|
+
})
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
setupRoutes() {
|
|
112
|
+
const app = this.app
|
|
113
|
+
const io = this.io
|
|
114
|
+
const mockIntegrations = this.mockIntegrations
|
|
115
|
+
const mockUsers = this.mockUsers
|
|
116
|
+
const mockConnections = this.mockConnections
|
|
117
|
+
const envVariables = this.envVariables
|
|
118
|
+
|
|
119
|
+
// API Routes
|
|
120
|
+
|
|
121
|
+
// Frigg server control
|
|
122
|
+
app.get('/api/frigg/status', (req, res) => {
|
|
123
|
+
res.json(processManager.getStatus())
|
|
124
|
+
})
|
|
125
|
+
|
|
126
|
+
app.get('/api/frigg/logs', (req, res) => {
|
|
127
|
+
const limit = parseInt(req.query.limit) || 100
|
|
128
|
+
res.json({ logs: processManager.getLogs(limit) })
|
|
129
|
+
})
|
|
130
|
+
|
|
131
|
+
app.get('/api/frigg/metrics', (req, res) => {
|
|
132
|
+
res.json(processManager.getMetrics())
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
app.post('/api/frigg/start', async (req, res) => {
|
|
136
|
+
try {
|
|
137
|
+
const options = {
|
|
138
|
+
stage: req.body.stage || 'dev',
|
|
139
|
+
verbose: req.body.verbose || false
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
const result = await processManager.start(options)
|
|
143
|
+
res.json({
|
|
144
|
+
message: 'Frigg started successfully',
|
|
145
|
+
status: result
|
|
146
|
+
})
|
|
147
|
+
} catch (error) {
|
|
148
|
+
res.status(500).json({ error: error.message })
|
|
149
|
+
}
|
|
150
|
+
})
|
|
151
|
+
|
|
152
|
+
app.post('/api/frigg/stop', async (req, res) => {
|
|
153
|
+
try {
|
|
154
|
+
const force = req.body.force || false
|
|
155
|
+
await processManager.stop(force)
|
|
156
|
+
res.json({ message: 'Frigg stopped successfully' })
|
|
157
|
+
} catch (error) {
|
|
158
|
+
res.status(500).json({ error: error.message })
|
|
159
|
+
}
|
|
160
|
+
})
|
|
161
|
+
|
|
162
|
+
app.post('/api/frigg/restart', async (req, res) => {
|
|
163
|
+
try {
|
|
164
|
+
const options = {
|
|
165
|
+
stage: req.body.stage || 'dev',
|
|
166
|
+
verbose: req.body.verbose || false
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
const result = await processManager.restart(options)
|
|
170
|
+
res.json({
|
|
171
|
+
message: 'Frigg restarted successfully',
|
|
172
|
+
status: result
|
|
173
|
+
})
|
|
174
|
+
} catch (error) {
|
|
175
|
+
res.status(500).json({ error: error.message })
|
|
176
|
+
}
|
|
177
|
+
})
|
|
178
|
+
|
|
179
|
+
// Integrations
|
|
180
|
+
app.get('/api/integrations', (req, res) => {
|
|
181
|
+
res.json({ integrations: mockIntegrations })
|
|
182
|
+
})
|
|
183
|
+
|
|
184
|
+
app.post('/api/integrations/install', async (req, res) => {
|
|
185
|
+
const { name } = req.body
|
|
186
|
+
|
|
187
|
+
try {
|
|
188
|
+
// In real implementation, this would run frigg install command
|
|
189
|
+
const newIntegration = {
|
|
190
|
+
id: Date.now().toString(),
|
|
191
|
+
name,
|
|
192
|
+
displayName: name.charAt(0).toUpperCase() + name.slice(1),
|
|
193
|
+
description: `${name} integration`,
|
|
194
|
+
installed: true,
|
|
195
|
+
installedAt: new Date().toISOString()
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
mockIntegrations.push(newIntegration)
|
|
199
|
+
io.emit('integrations:update', { integrations: mockIntegrations })
|
|
200
|
+
|
|
201
|
+
res.json({ integration: newIntegration })
|
|
202
|
+
} catch (error) {
|
|
203
|
+
res.status(500).json({ error: error.message })
|
|
204
|
+
}
|
|
205
|
+
})
|
|
206
|
+
|
|
207
|
+
// Environment variables
|
|
208
|
+
app.get('/api/environment', async (req, res) => {
|
|
209
|
+
try {
|
|
210
|
+
// In real implementation, read from .env file
|
|
211
|
+
res.json({ variables: envVariables })
|
|
212
|
+
} catch (error) {
|
|
213
|
+
res.status(500).json({ error: error.message })
|
|
214
|
+
}
|
|
215
|
+
})
|
|
216
|
+
|
|
217
|
+
app.put('/api/environment', async (req, res) => {
|
|
218
|
+
const { key, value } = req.body
|
|
219
|
+
|
|
220
|
+
try {
|
|
221
|
+
envVariables[key] = value
|
|
222
|
+
// In real implementation, write to .env file
|
|
223
|
+
res.json({ message: 'Environment variable updated' })
|
|
224
|
+
} catch (error) {
|
|
225
|
+
res.status(500).json({ error: error.message })
|
|
226
|
+
}
|
|
227
|
+
})
|
|
228
|
+
|
|
229
|
+
// Users
|
|
230
|
+
app.get('/api/users', (req, res) => {
|
|
231
|
+
res.json({ users: mockUsers })
|
|
232
|
+
})
|
|
233
|
+
|
|
234
|
+
app.post('/api/users', (req, res) => {
|
|
235
|
+
const newUser = {
|
|
236
|
+
id: Date.now().toString(),
|
|
237
|
+
...req.body,
|
|
238
|
+
createdAt: new Date().toISOString()
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
mockUsers.push(newUser)
|
|
242
|
+
res.json({ user: newUser })
|
|
243
|
+
})
|
|
244
|
+
|
|
245
|
+
// Connections
|
|
246
|
+
app.get('/api/connections', (req, res) => {
|
|
247
|
+
res.json({ connections: mockConnections })
|
|
248
|
+
})
|
|
249
|
+
|
|
250
|
+
// CLI Integration endpoints
|
|
251
|
+
app.get('/api/cli/info', async (req, res) => {
|
|
252
|
+
try {
|
|
253
|
+
const isAvailable = await cliIntegration.validateCLI()
|
|
254
|
+
const info = isAvailable ? await cliIntegration.getInfo() : null
|
|
255
|
+
|
|
256
|
+
res.json({
|
|
257
|
+
available: isAvailable,
|
|
258
|
+
info,
|
|
259
|
+
cliPath: cliIntegration.cliPath
|
|
260
|
+
})
|
|
261
|
+
} catch (error) {
|
|
262
|
+
res.status(500).json({ error: error.message })
|
|
263
|
+
}
|
|
264
|
+
})
|
|
265
|
+
|
|
266
|
+
app.post('/api/cli/build', async (req, res) => {
|
|
267
|
+
try {
|
|
268
|
+
const options = {
|
|
269
|
+
stage: req.body.stage || 'dev',
|
|
270
|
+
verbose: req.body.verbose || false,
|
|
271
|
+
cwd: req.body.cwd || process.cwd()
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
const result = await cliIntegration.buildProject(options)
|
|
275
|
+
res.json({
|
|
276
|
+
message: 'Build completed successfully',
|
|
277
|
+
output: result.stdout,
|
|
278
|
+
errors: result.stderr
|
|
279
|
+
})
|
|
280
|
+
} catch (error) {
|
|
281
|
+
res.status(500).json({ error: error.message })
|
|
282
|
+
}
|
|
283
|
+
})
|
|
284
|
+
|
|
285
|
+
app.post('/api/cli/deploy', async (req, res) => {
|
|
286
|
+
try {
|
|
287
|
+
const options = {
|
|
288
|
+
stage: req.body.stage || 'dev',
|
|
289
|
+
verbose: req.body.verbose || false,
|
|
290
|
+
cwd: req.body.cwd || process.cwd()
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
const result = await cliIntegration.deployProject(options)
|
|
294
|
+
res.json({
|
|
295
|
+
message: 'Deploy completed successfully',
|
|
296
|
+
output: result.stdout,
|
|
297
|
+
errors: result.stderr
|
|
298
|
+
})
|
|
299
|
+
} catch (error) {
|
|
300
|
+
res.status(500).json({ error: error.message })
|
|
301
|
+
}
|
|
302
|
+
})
|
|
303
|
+
|
|
304
|
+
app.post('/api/cli/create-integration', async (req, res) => {
|
|
305
|
+
try {
|
|
306
|
+
const integrationName = req.body.name
|
|
307
|
+
const options = {
|
|
308
|
+
cwd: req.body.cwd || process.cwd(),
|
|
309
|
+
verbose: req.body.verbose || false
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
const result = await cliIntegration.createIntegration(integrationName, options)
|
|
313
|
+
res.json({
|
|
314
|
+
message: 'Integration created successfully',
|
|
315
|
+
output: result.stdout,
|
|
316
|
+
errors: result.stderr
|
|
317
|
+
})
|
|
318
|
+
} catch (error) {
|
|
319
|
+
res.status(500).json({ error: error.message })
|
|
320
|
+
}
|
|
321
|
+
})
|
|
322
|
+
|
|
323
|
+
app.post('/api/cli/generate-iam', async (req, res) => {
|
|
324
|
+
try {
|
|
325
|
+
const options = {
|
|
326
|
+
output: req.body.output,
|
|
327
|
+
user: req.body.user,
|
|
328
|
+
stackName: req.body.stackName,
|
|
329
|
+
verbose: req.body.verbose || false,
|
|
330
|
+
cwd: req.body.cwd || process.cwd()
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
const result = await cliIntegration.generateIAM(options)
|
|
334
|
+
res.json({
|
|
335
|
+
message: 'IAM template generated successfully',
|
|
336
|
+
output: result.stdout,
|
|
337
|
+
errors: result.stderr
|
|
338
|
+
})
|
|
339
|
+
} catch (error) {
|
|
340
|
+
res.status(500).json({ error: error.message })
|
|
341
|
+
}
|
|
342
|
+
})
|
|
343
|
+
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
setupStaticFiles() {
|
|
347
|
+
// Serve static files in production
|
|
348
|
+
if (process.env.NODE_ENV === 'production') {
|
|
349
|
+
this.app.use(express.static(path.join(__dirname, '../dist')))
|
|
350
|
+
this.app.get('*', (req, res) => {
|
|
351
|
+
res.sendFile(path.join(__dirname, '../dist/index.html'))
|
|
352
|
+
})
|
|
353
|
+
} else {
|
|
354
|
+
// In development, provide helpful message
|
|
355
|
+
this.app.get('/', (req, res) => {
|
|
356
|
+
res.send(`
|
|
357
|
+
<!DOCTYPE html>
|
|
358
|
+
<html>
|
|
359
|
+
<head>
|
|
360
|
+
<title>Frigg Management UI - Development Mode</title>
|
|
361
|
+
<style>
|
|
362
|
+
body {
|
|
363
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
364
|
+
display: flex;
|
|
365
|
+
justify-content: center;
|
|
366
|
+
align-items: center;
|
|
367
|
+
height: 100vh;
|
|
368
|
+
margin: 0;
|
|
369
|
+
background: #f5f5f5;
|
|
370
|
+
}
|
|
371
|
+
.container {
|
|
372
|
+
text-align: center;
|
|
373
|
+
padding: 2rem;
|
|
374
|
+
background: white;
|
|
375
|
+
border-radius: 8px;
|
|
376
|
+
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
377
|
+
max-width: 600px;
|
|
378
|
+
}
|
|
379
|
+
h1 { color: #333; }
|
|
380
|
+
p { color: #666; line-height: 1.6; }
|
|
381
|
+
code {
|
|
382
|
+
background: #f0f0f0;
|
|
383
|
+
padding: 0.2rem 0.4rem;
|
|
384
|
+
border-radius: 3px;
|
|
385
|
+
font-family: 'Consolas', 'Monaco', monospace;
|
|
386
|
+
}
|
|
387
|
+
.status {
|
|
388
|
+
margin: 1rem 0;
|
|
389
|
+
padding: 1rem;
|
|
390
|
+
background: #e3f2fd;
|
|
391
|
+
border-radius: 4px;
|
|
392
|
+
color: #1976d2;
|
|
393
|
+
}
|
|
394
|
+
</style>
|
|
395
|
+
</head>
|
|
396
|
+
<body>
|
|
397
|
+
<div class="container">
|
|
398
|
+
<h1>Frigg Management UI</h1>
|
|
399
|
+
<div class="status">
|
|
400
|
+
<strong>Backend API Server is running on port ${this.port}</strong>
|
|
401
|
+
</div>
|
|
402
|
+
<p>
|
|
403
|
+
The Management UI requires both the backend server (running now) and the frontend development server.
|
|
404
|
+
</p>
|
|
405
|
+
<p>
|
|
406
|
+
To start the complete Management UI, run the following commands in the management-ui directory:
|
|
407
|
+
</p>
|
|
408
|
+
<p>
|
|
409
|
+
<code>cd ${path.join(__dirname, '..')}</code><br>
|
|
410
|
+
<code>npm run dev:server</code>
|
|
411
|
+
</p>
|
|
412
|
+
<p>
|
|
413
|
+
This will start both the backend API server and the Vite frontend dev server.
|
|
414
|
+
The UI will be available at <strong>http://localhost:5173</strong>
|
|
415
|
+
</p>
|
|
416
|
+
</div>
|
|
417
|
+
</body>
|
|
418
|
+
</html>
|
|
419
|
+
`)
|
|
420
|
+
})
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
stop() {
|
|
425
|
+
return new Promise((resolve) => {
|
|
426
|
+
if (this.httpServer) {
|
|
427
|
+
this.httpServer.close(() => {
|
|
428
|
+
console.log('Management UI server stopped')
|
|
429
|
+
resolve()
|
|
430
|
+
})
|
|
431
|
+
} else {
|
|
432
|
+
resolve()
|
|
433
|
+
}
|
|
434
|
+
})
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
// Export the class for use as a module
|
|
439
|
+
export { FriggManagementServer }
|
|
440
|
+
|
|
441
|
+
// If run directly, start the server
|
|
442
|
+
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
443
|
+
const server = new FriggManagementServer()
|
|
444
|
+
server.start().catch(console.error)
|
|
445
|
+
<<<<<<< HEAD
|
|
446
|
+
<<<<<<< HEAD
|
|
447
|
+
}
|
|
448
|
+
=======
|
|
449
|
+
}
|
|
450
|
+
=======
|
|
451
|
+
const app = express()
|
|
452
|
+
const httpServer = createServer(app)
|
|
453
|
+
const io = new Server(httpServer, {
|
|
454
|
+
cors: {
|
|
455
|
+
origin: "http://localhost:5173",
|
|
456
|
+
methods: ["GET", "POST"]
|
|
457
|
+
=======
|
|
458
|
+
>>>>>>> f153939e (refactor: clean up CLI help display and remove unused dependencies)
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
async start() {
|
|
462
|
+
this.app = express()
|
|
463
|
+
this.httpServer = createServer(this.app)
|
|
464
|
+
this.io = new Server(this.httpServer, {
|
|
465
|
+
cors: {
|
|
466
|
+
origin: ["http://localhost:5173", "http://localhost:3000"],
|
|
467
|
+
methods: ["GET", "POST"]
|
|
468
|
+
}
|
|
469
|
+
})
|
|
470
|
+
|
|
471
|
+
this.setupMiddleware()
|
|
472
|
+
this.setupSocketIO()
|
|
473
|
+
this.setupRoutes()
|
|
474
|
+
this.setupStaticFiles()
|
|
475
|
+
|
|
476
|
+
return new Promise((resolve, reject) => {
|
|
477
|
+
this.httpServer.listen(this.port, (err) => {
|
|
478
|
+
if (err) {
|
|
479
|
+
reject(err)
|
|
480
|
+
} else {
|
|
481
|
+
console.log(`Management UI server running on port ${this.port}`)
|
|
482
|
+
if (this.repositoryInfo) {
|
|
483
|
+
console.log(`Connected to repository: ${this.repositoryInfo.name}`)
|
|
484
|
+
}
|
|
485
|
+
resolve()
|
|
486
|
+
}
|
|
487
|
+
})
|
|
488
|
+
})
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
setupMiddleware() {
|
|
492
|
+
this.app.use(cors())
|
|
493
|
+
this.app.use(express.json())
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
setupSocketIO() {
|
|
497
|
+
// Set up process manager listeners
|
|
498
|
+
processManager.addStatusListener((data) => {
|
|
499
|
+
this.io.emit('frigg:status', data)
|
|
500
|
+
|
|
501
|
+
// Also emit logs if present
|
|
502
|
+
if (data.log) {
|
|
503
|
+
this.io.emit('frigg:log', data.log)
|
|
504
|
+
}
|
|
505
|
+
})
|
|
506
|
+
|
|
507
|
+
// Socket.IO connection handling
|
|
508
|
+
this.io.on('connection', (socket) => {
|
|
509
|
+
console.log('Client connected:', socket.id)
|
|
510
|
+
|
|
511
|
+
// Send initial status
|
|
512
|
+
socket.emit('frigg:status', processManager.getStatus())
|
|
513
|
+
|
|
514
|
+
// Send recent logs
|
|
515
|
+
const recentLogs = processManager.getLogs(50)
|
|
516
|
+
if (recentLogs.length > 0) {
|
|
517
|
+
socket.emit('frigg:logs', recentLogs)
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
socket.on('disconnect', () => {
|
|
521
|
+
console.log('Client disconnected:', socket.id)
|
|
522
|
+
})
|
|
523
|
+
})
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
setupRoutes() {
|
|
527
|
+
const app = this.app
|
|
528
|
+
const io = this.io
|
|
529
|
+
const mockIntegrations = this.mockIntegrations
|
|
530
|
+
const mockUsers = this.mockUsers
|
|
531
|
+
const mockConnections = this.mockConnections
|
|
532
|
+
const envVariables = this.envVariables
|
|
533
|
+
|
|
534
|
+
// API Routes
|
|
535
|
+
|
|
536
|
+
// Frigg server control
|
|
537
|
+
app.get('/api/frigg/status', (req, res) => {
|
|
538
|
+
res.json(processManager.getStatus())
|
|
539
|
+
})
|
|
540
|
+
|
|
541
|
+
app.get('/api/frigg/logs', (req, res) => {
|
|
542
|
+
const limit = parseInt(req.query.limit) || 100
|
|
543
|
+
res.json({ logs: processManager.getLogs(limit) })
|
|
544
|
+
})
|
|
545
|
+
|
|
546
|
+
app.get('/api/frigg/metrics', (req, res) => {
|
|
547
|
+
res.json(processManager.getMetrics())
|
|
548
|
+
})
|
|
549
|
+
|
|
550
|
+
app.post('/api/frigg/start', async (req, res) => {
|
|
551
|
+
try {
|
|
552
|
+
const options = {
|
|
553
|
+
stage: req.body.stage || 'dev',
|
|
554
|
+
verbose: req.body.verbose || false
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
const result = await processManager.start(options)
|
|
558
|
+
res.json({
|
|
559
|
+
message: 'Frigg started successfully',
|
|
560
|
+
status: result
|
|
561
|
+
})
|
|
562
|
+
} catch (error) {
|
|
563
|
+
res.status(500).json({ error: error.message })
|
|
564
|
+
}
|
|
565
|
+
})
|
|
566
|
+
|
|
567
|
+
app.post('/api/frigg/stop', async (req, res) => {
|
|
568
|
+
try {
|
|
569
|
+
const force = req.body.force || false
|
|
570
|
+
await processManager.stop(force)
|
|
571
|
+
res.json({ message: 'Frigg stopped successfully' })
|
|
572
|
+
} catch (error) {
|
|
573
|
+
res.status(500).json({ error: error.message })
|
|
574
|
+
}
|
|
575
|
+
})
|
|
576
|
+
|
|
577
|
+
app.post('/api/frigg/restart', async (req, res) => {
|
|
578
|
+
try {
|
|
579
|
+
const options = {
|
|
580
|
+
stage: req.body.stage || 'dev',
|
|
581
|
+
verbose: req.body.verbose || false
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
const result = await processManager.restart(options)
|
|
585
|
+
res.json({
|
|
586
|
+
message: 'Frigg restarted successfully',
|
|
587
|
+
status: result
|
|
588
|
+
})
|
|
589
|
+
} catch (error) {
|
|
590
|
+
res.status(500).json({ error: error.message })
|
|
591
|
+
}
|
|
592
|
+
})
|
|
593
|
+
|
|
594
|
+
// Integrations
|
|
595
|
+
app.get('/api/integrations', (req, res) => {
|
|
596
|
+
res.json({ integrations: mockIntegrations })
|
|
597
|
+
})
|
|
598
|
+
|
|
599
|
+
app.post('/api/integrations/install', async (req, res) => {
|
|
600
|
+
const { name } = req.body
|
|
601
|
+
|
|
602
|
+
try {
|
|
603
|
+
// In real implementation, this would run frigg install command
|
|
604
|
+
const newIntegration = {
|
|
605
|
+
id: Date.now().toString(),
|
|
606
|
+
name,
|
|
607
|
+
displayName: name.charAt(0).toUpperCase() + name.slice(1),
|
|
608
|
+
description: `${name} integration`,
|
|
609
|
+
installed: true,
|
|
610
|
+
installedAt: new Date().toISOString()
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
mockIntegrations.push(newIntegration)
|
|
614
|
+
io.emit('integrations:update', { integrations: mockIntegrations })
|
|
615
|
+
|
|
616
|
+
res.json({ integration: newIntegration })
|
|
617
|
+
} catch (error) {
|
|
618
|
+
res.status(500).json({ error: error.message })
|
|
619
|
+
}
|
|
620
|
+
})
|
|
621
|
+
|
|
622
|
+
// Environment variables
|
|
623
|
+
app.get('/api/environment', async (req, res) => {
|
|
624
|
+
try {
|
|
625
|
+
// In real implementation, read from .env file
|
|
626
|
+
res.json({ variables: envVariables })
|
|
627
|
+
} catch (error) {
|
|
628
|
+
res.status(500).json({ error: error.message })
|
|
629
|
+
}
|
|
630
|
+
})
|
|
631
|
+
|
|
632
|
+
app.put('/api/environment', async (req, res) => {
|
|
633
|
+
const { key, value } = req.body
|
|
634
|
+
|
|
635
|
+
try {
|
|
636
|
+
envVariables[key] = value
|
|
637
|
+
// In real implementation, write to .env file
|
|
638
|
+
res.json({ message: 'Environment variable updated' })
|
|
639
|
+
} catch (error) {
|
|
640
|
+
res.status(500).json({ error: error.message })
|
|
641
|
+
}
|
|
642
|
+
})
|
|
643
|
+
|
|
644
|
+
// Users
|
|
645
|
+
app.get('/api/users', (req, res) => {
|
|
646
|
+
res.json({ users: mockUsers })
|
|
647
|
+
})
|
|
648
|
+
|
|
649
|
+
app.post('/api/users', (req, res) => {
|
|
650
|
+
const newUser = {
|
|
651
|
+
id: Date.now().toString(),
|
|
652
|
+
...req.body,
|
|
653
|
+
createdAt: new Date().toISOString()
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
mockUsers.push(newUser)
|
|
657
|
+
res.json({ user: newUser })
|
|
658
|
+
})
|
|
659
|
+
|
|
660
|
+
// Connections
|
|
661
|
+
app.get('/api/connections', (req, res) => {
|
|
662
|
+
res.json({ connections: mockConnections })
|
|
663
|
+
})
|
|
664
|
+
|
|
665
|
+
// CLI Integration endpoints
|
|
666
|
+
app.get('/api/cli/info', async (req, res) => {
|
|
667
|
+
try {
|
|
668
|
+
const isAvailable = await cliIntegration.validateCLI()
|
|
669
|
+
const info = isAvailable ? await cliIntegration.getInfo() : null
|
|
670
|
+
|
|
671
|
+
res.json({
|
|
672
|
+
available: isAvailable,
|
|
673
|
+
info,
|
|
674
|
+
cliPath: cliIntegration.cliPath
|
|
675
|
+
})
|
|
676
|
+
} catch (error) {
|
|
677
|
+
res.status(500).json({ error: error.message })
|
|
678
|
+
}
|
|
679
|
+
})
|
|
680
|
+
|
|
681
|
+
app.post('/api/cli/build', async (req, res) => {
|
|
682
|
+
try {
|
|
683
|
+
const options = {
|
|
684
|
+
stage: req.body.stage || 'dev',
|
|
685
|
+
verbose: req.body.verbose || false,
|
|
686
|
+
cwd: req.body.cwd || process.cwd()
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
const result = await cliIntegration.buildProject(options)
|
|
690
|
+
res.json({
|
|
691
|
+
message: 'Build completed successfully',
|
|
692
|
+
output: result.stdout,
|
|
693
|
+
errors: result.stderr
|
|
694
|
+
})
|
|
695
|
+
} catch (error) {
|
|
696
|
+
res.status(500).json({ error: error.message })
|
|
697
|
+
}
|
|
698
|
+
})
|
|
699
|
+
|
|
700
|
+
app.post('/api/cli/deploy', async (req, res) => {
|
|
701
|
+
try {
|
|
702
|
+
const options = {
|
|
703
|
+
stage: req.body.stage || 'dev',
|
|
704
|
+
verbose: req.body.verbose || false,
|
|
705
|
+
cwd: req.body.cwd || process.cwd()
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
const result = await cliIntegration.deployProject(options)
|
|
709
|
+
res.json({
|
|
710
|
+
message: 'Deploy completed successfully',
|
|
711
|
+
output: result.stdout,
|
|
712
|
+
errors: result.stderr
|
|
713
|
+
})
|
|
714
|
+
} catch (error) {
|
|
715
|
+
res.status(500).json({ error: error.message })
|
|
716
|
+
}
|
|
717
|
+
})
|
|
718
|
+
|
|
719
|
+
app.post('/api/cli/create-integration', async (req, res) => {
|
|
720
|
+
try {
|
|
721
|
+
const integrationName = req.body.name
|
|
722
|
+
const options = {
|
|
723
|
+
cwd: req.body.cwd || process.cwd(),
|
|
724
|
+
verbose: req.body.verbose || false
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
const result = await cliIntegration.createIntegration(integrationName, options)
|
|
728
|
+
res.json({
|
|
729
|
+
message: 'Integration created successfully',
|
|
730
|
+
output: result.stdout,
|
|
731
|
+
errors: result.stderr
|
|
732
|
+
})
|
|
733
|
+
} catch (error) {
|
|
734
|
+
res.status(500).json({ error: error.message })
|
|
735
|
+
}
|
|
736
|
+
})
|
|
737
|
+
|
|
738
|
+
app.post('/api/cli/generate-iam', async (req, res) => {
|
|
739
|
+
try {
|
|
740
|
+
const options = {
|
|
741
|
+
output: req.body.output,
|
|
742
|
+
user: req.body.user,
|
|
743
|
+
stackName: req.body.stackName,
|
|
744
|
+
verbose: req.body.verbose || false,
|
|
745
|
+
cwd: req.body.cwd || process.cwd()
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
const result = await cliIntegration.generateIAM(options)
|
|
749
|
+
res.json({
|
|
750
|
+
message: 'IAM template generated successfully',
|
|
751
|
+
output: result.stdout,
|
|
752
|
+
errors: result.stderr
|
|
753
|
+
})
|
|
754
|
+
} catch (error) {
|
|
755
|
+
res.status(500).json({ error: error.message })
|
|
756
|
+
}
|
|
757
|
+
})
|
|
758
|
+
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
setupStaticFiles() {
|
|
762
|
+
// Serve static files in production
|
|
763
|
+
if (process.env.NODE_ENV === 'production') {
|
|
764
|
+
this.app.use(express.static(path.join(__dirname, '../dist')))
|
|
765
|
+
this.app.get('*', (req, res) => {
|
|
766
|
+
res.sendFile(path.join(__dirname, '../dist/index.html'))
|
|
767
|
+
})
|
|
768
|
+
} else {
|
|
769
|
+
// In development, provide helpful message
|
|
770
|
+
this.app.get('/', (req, res) => {
|
|
771
|
+
res.send(`
|
|
772
|
+
<!DOCTYPE html>
|
|
773
|
+
<html>
|
|
774
|
+
<head>
|
|
775
|
+
<title>Frigg Management UI - Development Mode</title>
|
|
776
|
+
<style>
|
|
777
|
+
body {
|
|
778
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
779
|
+
display: flex;
|
|
780
|
+
justify-content: center;
|
|
781
|
+
align-items: center;
|
|
782
|
+
height: 100vh;
|
|
783
|
+
margin: 0;
|
|
784
|
+
background: #f5f5f5;
|
|
785
|
+
}
|
|
786
|
+
.container {
|
|
787
|
+
text-align: center;
|
|
788
|
+
padding: 2rem;
|
|
789
|
+
background: white;
|
|
790
|
+
border-radius: 8px;
|
|
791
|
+
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
|
792
|
+
max-width: 600px;
|
|
793
|
+
}
|
|
794
|
+
h1 { color: #333; }
|
|
795
|
+
p { color: #666; line-height: 1.6; }
|
|
796
|
+
code {
|
|
797
|
+
background: #f0f0f0;
|
|
798
|
+
padding: 0.2rem 0.4rem;
|
|
799
|
+
border-radius: 3px;
|
|
800
|
+
font-family: 'Consolas', 'Monaco', monospace;
|
|
801
|
+
}
|
|
802
|
+
.status {
|
|
803
|
+
margin: 1rem 0;
|
|
804
|
+
padding: 1rem;
|
|
805
|
+
background: #e3f2fd;
|
|
806
|
+
border-radius: 4px;
|
|
807
|
+
color: #1976d2;
|
|
808
|
+
}
|
|
809
|
+
</style>
|
|
810
|
+
</head>
|
|
811
|
+
<body>
|
|
812
|
+
<div class="container">
|
|
813
|
+
<h1>Frigg Management UI</h1>
|
|
814
|
+
<div class="status">
|
|
815
|
+
<strong>Backend API Server is running on port ${this.port}</strong>
|
|
816
|
+
</div>
|
|
817
|
+
<p>
|
|
818
|
+
The Management UI requires both the backend server (running now) and the frontend development server.
|
|
819
|
+
</p>
|
|
820
|
+
<p>
|
|
821
|
+
To start the complete Management UI, run the following commands in the management-ui directory:
|
|
822
|
+
</p>
|
|
823
|
+
<p>
|
|
824
|
+
<code>cd ${path.join(__dirname, '..')}</code><br>
|
|
825
|
+
<code>npm run dev:server</code>
|
|
826
|
+
</p>
|
|
827
|
+
<p>
|
|
828
|
+
This will start both the backend API server and the Vite frontend dev server.
|
|
829
|
+
The UI will be available at <strong>http://localhost:5173</strong>
|
|
830
|
+
</p>
|
|
831
|
+
</div>
|
|
832
|
+
</body>
|
|
833
|
+
</html>
|
|
834
|
+
`)
|
|
835
|
+
})
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
stop() {
|
|
840
|
+
return new Promise((resolve) => {
|
|
841
|
+
if (this.httpServer) {
|
|
842
|
+
this.httpServer.close(() => {
|
|
843
|
+
console.log('Management UI server stopped')
|
|
844
|
+
resolve()
|
|
845
|
+
})
|
|
846
|
+
} else {
|
|
847
|
+
resolve()
|
|
848
|
+
}
|
|
849
|
+
})
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
<<<<<<< HEAD
|
|
854
|
+
// Start server
|
|
855
|
+
const PORT = process.env.PORT || 3001
|
|
856
|
+
httpServer.listen(PORT, () => {
|
|
857
|
+
console.log(`Management UI server running on port ${PORT}`)
|
|
858
|
+
})
|
|
859
|
+
>>>>>>> 652520a5 (Claude Flow RFC related development)
|
|
860
|
+
=======
|
|
861
|
+
// Export the class for use as a module
|
|
862
|
+
export { FriggManagementServer }
|
|
863
|
+
|
|
864
|
+
// If run directly, start the server
|
|
865
|
+
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
866
|
+
const server = new FriggManagementServer()
|
|
867
|
+
server.start().catch(console.error)
|
|
868
|
+
}
|
|
869
|
+
>>>>>>> f153939e (refactor: clean up CLI help display and remove unused dependencies)
|
|
870
|
+
>>>>>>> 860052b4 (feat: integrate complete management-ui and additional features)
|
|
871
|
+
=======
|
|
872
|
+
}
|
|
873
|
+
>>>>>>> 7e97f01c (fix: resolve ui-command merge conflicts and update package.json)
|