Sync defaultMessage from lokalise * Enhance translation sync functionality and tests - Added logging for found component files during sync. - Introduced tests for handling complex components with replacements. - Updated regex in syncIntlFormatMessage to support optional second arguments. - Removed unused test files. * feat(syncDefaultMessage): add script for syncing default message with lokalise * feat(syncDefaultMessage): add script for syncing default message with lokalise Approved-by: Matilda Landström
28 lines
593 B
YAML
28 lines
593 B
YAML
services:
|
|
redis-api:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3101:3001"
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
- REDIS_CONNECTION=redis:6379
|
|
- PRIMARY_API_KEY=
|
|
- SECONDARY_API_KEY=
|
|
- NODE_ENV=development
|
|
- SENTRY_ENABLED=false
|
|
|
|
redis:
|
|
image: redis:6
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
redisinsight:
|
|
image: redis/redisinsight:latest
|
|
ports:
|
|
- "5540:5540"
|
|
depends_on:
|
|
- redis
|