- Replace all Jumble branding with Smesh throughout codebase - Add new Smesh logo images (light/dark themes) - Update Logo component to use PNG images with theme support - Update URLs to git.mleku.dev/mleku/smesh - Rename JumbleTranslate to SmeshTranslate - Update all i18n locale files with new branding - Add system theme detection CSS to prevent flash on load - Update PWA manifest, docker-compose, and config files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
635 B
YAML
31 lines
635 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
smesh:
|
|
container_name: smesh-nginx
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
VITE_PROXY_SERVER: ${SMESH_PROXY_SERVER_URL:-http://localhost:8090}
|
|
ports:
|
|
- '8089:80'
|
|
restart: unless-stopped
|
|
networks:
|
|
- smesh
|
|
|
|
proxy-server:
|
|
image: ghcr.io/danvergara/smesh-proxy-server:latest
|
|
environment:
|
|
- ALLOW_ORIGIN=${SMESH_SOCIAL_URL:-http://localhost:8089}
|
|
- SMESH_PROXY_GITHUB_TOKEN=${SMESH_PROXY_GITHUB_TOKEN}
|
|
- ENABLE_PPROF=true
|
|
- PORT=8080
|
|
ports:
|
|
- '8090:8080'
|
|
networks:
|
|
- smesh
|
|
|
|
networks:
|
|
smesh:
|