- Add functional chat with server communication and test responses - Add ProposedEventCard component for confirm/reject actions - Move Constants (Day, Month) from client to shared package - Add dateHelpers utility for weekday calculations - Extend Themes.tsx with button and text colors - Update CLAUDE.md with current implementation status - Add *.tsbuildinfo to .gitignore
34 lines
752 B
YAML
34 lines
752 B
YAML
services:
|
|
mongo:
|
|
image: mongo:8
|
|
restart: always
|
|
ports:
|
|
- "27017:27017"
|
|
environment:
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
MONGO_INITDB_ROOT_PASSWORD: mongoose
|
|
volumes:
|
|
- mongo-data:/data/db
|
|
healthcheck:
|
|
test: mongosh --eval "db.adminCommand('ping')"
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
mongo-express:
|
|
image: mongo-express:latest
|
|
restart: always
|
|
ports:
|
|
- "8083:8083"
|
|
environment:
|
|
ME_CONFIG_MONGODB_URL: mongodb://root:mongoose@mongo:27017/
|
|
ME_CONFIG_BASICAUTH_ENABLED: true
|
|
ME_CONFIG_BASICAUTH_USERNAME: admin
|
|
ME_CONFIG_BASICAUTH_PASSWORD: admin
|
|
depends_on:
|
|
mongo:
|
|
condition: service_healthy
|
|
|
|
volumes:
|
|
mongo-data:
|