Workspace / Dashboard
๐Ÿ“ฆ
โ†‘ 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-gateway
feat: add rate limiting middleware ยท 2 min ago
๐Ÿš€
Sarah M. deployed web-frontend
v2.4.1 โ†’ production ยท 8 min ago
๐Ÿ”€
Marcus R. opened PR #247
auth-service: Implement OAuth2 flow ยท 12 min ago
๐Ÿ›
Aisha L. commented on #189
data-pipeline: Memory leak in stream processor ยท 18 min ago
โœ…
Alex K. merged #245 into main
notification-svc: Fix email template rendering ยท 2 hr ago
๐Ÿ“
Sarah M. committed to admin-dashboard
fix: correct timezone handling in reports ยท 3 hr ago
๐Ÿš€
Bot CI deployed search-api
v1.8.3 โ†’ staging ยท 4 hr ago
๐Ÿ”€
Marcus R. requested review on #243
web-frontend: Add dark mode support ยท 5 hr ago
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