refactor: migrate legacy wire namespace to wrn
Quality / quality (ubuntu-latest) (push) Failing after 9m49s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-12 18:51:15 +05:30
parent ec23dd4c93
commit 2c960fc1dc
488 changed files with 27306 additions and 19063 deletions
+9 -9
View File
@@ -5,13 +5,13 @@ services:
postgres:
image: postgres:16-alpine
environment:
POSTGRES_USER: wire
POSTGRES_PASSWORD: wire
POSTGRES_DB: wire_test
POSTGRES_USER: wrn
POSTGRES_PASSWORD: wrn
POSTGRES_DB: wrn_test
ports:
- "5433:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U wire -d wire_test"]
test: ["CMD-SHELL", "pg_isready -U wrn -d wrn_test"]
interval: 2s
timeout: 3s
retries: 40
@@ -19,14 +19,14 @@ services:
mysql:
image: mysql:8
environment:
MYSQL_ROOT_PASSWORD: wire
MYSQL_DATABASE: wire_test
MYSQL_USER: wire
MYSQL_PASSWORD: wire
MYSQL_ROOT_PASSWORD: wrn
MYSQL_DATABASE: wrn_test
MYSQL_USER: wrn
MYSQL_PASSWORD: wrn
ports:
- "3307:3306"
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "-uwire", "-pwire"]
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "-uwrn", "-pwrn"]
interval: 3s
timeout: 3s
retries: 40