Workspace Dashboard
Welcome back, Alex. Here's what's happening across your projects.
โ 12%
12
Active Repositories
โ 28%
147
Deployments (30d)
โ 5%
7
Open Pull Requests
โ 18%
23
Open Issues
1
import { Hono } from 'hono'
2
import { cors } from 'hono/cors'
3
import { rateLimiter } from './middleware/rate-limiter'
4
5
// Initialize the application
6
const app = new Hono()
7
8
// Configure middleware
9
app.use('/*', cors())
10
app.use('/*', rateLimiter({ max: 100, window: '1m' }))
11
12
app.get('/', (c) => {
13
return c.json({
14
status: 'healthy',
15
version: '2.4.1',
16
uptime: process.uptime()
17
})
18
})
19
20
app.get('/api/deployments', async (c) => {
21
const deployments = await getRecentDeployments(50)
22
return c.json({ deployments, total: deployments.length })
23
})
24
25
export default app
| Deployment ID | Repository | Branch | Status | Duration | Triggered | By |
|---|---|---|---|---|---|---|
| #dp-7f3a | api-gateway | main | โ Success | 2.4s | 2 min ago | Alex K. |
| #dp-6e2b | web-frontend | main | โ Success | 4.1s | 8 min ago | Sarah M. |
| #dp-5d1c | auth-service | feat/oauth | โ Building | โ | 12 min ago | Marcus R. |
| #dp-4c0a | data-pipeline | main | โ Failed | 18.2s | 25 min ago | Bot CI |
| #dp-3b9e | admin-dashboard | develop | โ Success | 3.7s | 1 hr ago | Aisha L. |
| #dp-2a8d | notification-svc | hotfix/email | โ Success | 1.9s | 2 hr ago | Alex K. |
Recent Activity
Alex K. committed to
api-gatewaySarah M. deployed
web-frontendMarcus R. opened PR
#247Aisha L. commented on
#189Alex K. merged
#245 into mainSarah M. committed to
admin-dashboardBot CI deployed
search-apiMarcus R. requested review on
#243
Active Repositories
api-gateway
Main API gateway service
Live
web-frontend
React frontend application
Live
auth-service
Authentication & authorization
Building
data-pipeline
ETL processing pipeline
Error
notification-svc
Push & email notifications
Live
Team Members
AK
Alex Kowalski
Admin
SM
Sarah Mitchell
Maintainer
MR
Marcus Rivera
Member
AL
Aisha Liang
Maintainer
JD
James Doyle
Member