feat(matrix-clock-bot): add Matrix bot for time tracking

- Add Docker build configuration with npm overrides for matrix-sdk
- Update port from 3317 to 3318 to avoid conflict with Zitare bot
- Add tsconfig.build.json for production builds
- Add clock-bot service to docker-compose.macmini.yml
- Bot supports timers, alarms, and world clocks via Matrix chat

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-28 17:04:45 +01:00
parent 9a7afea7fe
commit e2a3277fa1
7 changed files with 90 additions and 19 deletions

View file

@ -4,7 +4,7 @@ import { Logger } from '@nestjs/common';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
const port = process.env.PORT || 3317;
const port = process.env.PORT || 3318;
await app.listen(port);