add initial complete webui, more ai commands for moderation, add api

This commit is contained in:
Aidan 2025-07-05 14:36:17 -04:00
parent 19e794e34c
commit 173d4e7a52
112 changed files with 8176 additions and 780 deletions

11
docker-compose.yml.example Normal file → Executable file
View file

@ -2,17 +2,20 @@ services:
kowalski:
build: .
container_name: kowalski
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- ./.env:/usr/src/app/.env:ro
- ./telegram/props/lastfm.json:/usr/src/app/telegram/props/lastfm.json
environment:
- NODE_ENV=production
env_file:
- .env
depends_on:
- postgres
postgres:
image: postgres:17
container_name: kowalski-postgres
restart: unless-stopped
ports:
- 5433:5432
volumes:
- ./db:/var/lib/postgresql/data
environment: