Add mobile home page with weather and transit widgets
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-05-16 16:33:51 +02:00
parent 7bbefaa1f6
commit 13339b17bf
8 changed files with 486 additions and 15 deletions
+2
View File
@@ -17,6 +17,7 @@ import jellyfin from './routes/jellyfin'
import navidrome from './routes/navidrome'
import romm from './routes/romm'
import weather from './routes/weather'
import transit from './routes/transit'
const app = express()
const PORT = Number(process.env.PORT ?? 3001)
@@ -39,6 +40,7 @@ app.use('/api/jellyfin', jellyfin)
app.use('/api/navidrome', navidrome)
app.use('/api/romm', romm)
app.use('/api/weather', weather)
app.use('/api/transit', transit)
// Serve built frontend in production only
if (process.env.NODE_ENV === 'production') {