chore: sync all remaining changes
Release Build / build-docker (push) Successful in 52s
Release Build / build-android-and-release (push) Failing after 1m1s

- Remove android build directory (moved to CI)
- Update package dependencies
- Misc server and client improvements
This commit is contained in:
2026-04-18 22:40:25 +02:00
parent 64368b1f29
commit c1651550d1
94 changed files with 361 additions and 1287 deletions
+23 -18
View File
@@ -11,23 +11,28 @@ services:
- zen-network
server:
depends_on:
- mongo
environment:
- MONGO_URI=mongodb://mongo:27017/zenkanji
volumes:
- ./server:/app
- /app/node_modules
ports:
- "3000:3000"
command: npm run dev
build:
context: ./server
container_name: zen_server
env_file:
- ./server/.env
networks:
- zen-network
client:
build:
target: dev-stage
ports:
- "5173:5173"
volumes:
- ./client:/app
- /app/node_modules
command: npm run dev -- --host
build:
context: ./client
container_name: zen_client
env_file:
- ./client/.env
depends_on:
- server
networks:
- zen-network
volumes:
mongo-data:
networks:
zen-network:
driver: bridge