- Fix DB_NAME=db_yal -> mydb in api_yal .env
- Add connection pool (MaxOpenConns 25, MaxIdleConns 10, ConnMaxLifetime 30m)
- Replace GORM AutoMigrate with golang-migrate in api_yal and api_bb
- Create embedded SQL migrations for both APIs
- Add DB_SCHEMA support to api_bb config
- Consolidate to single Postgres: db_bb -> schema 'bb' on db container
- Remove db_bb service, bb-network, db_bb volume from compose
- Remove api_tp targets from Makefile
- Clean up old migrate.go
- Add test_server.go with chi-based router, shared in-memory SQLite DB, mock repositories
- Add mock_object_repository.go and mock_appeal_repository.go for lightweight testing
- Add setup.go with TestConfig/TestUser helpers, HTTP request builder, and fixtures
- Add go-sqlite3 dependency for in-memory test database
- Rewrite all 7 integration test suites (account, appeal, auth, comment, feedback, object, rating)
using the new test infrastructure
modified: main_dc/yalarba/api_yal/go.sum
new file: main_dc/yalarba/api_yal/internal/dto/account_dto.go
new file: main_dc/yalarba/api_yal/internal/handlers/account.go
modified: main_dc/yalarba/api_yal/internal/handlers/auth.go
modified: main_dc/yalarba/api_yal/internal/router/router.go
new file: main_dc/yalarba/api_yal/internal/service/account_service.go
add some auth functions into api_yal
modified: go.sum
new file: internal/logger/interface.go
new file: internal/logger/route_logger.go
modified: internal/router/router.go
add router logger that logg all router in the start api_yal
modified: main_dc/yalarba/api_yal/go.mod
modified: main_dc/yalarba/api_yal/go.sum
new file: main_dc/yalarba/api_yal/internal/database/psql_db.go
add connection to db without tests api_yal
modified: main_dc/yalarba/api_yal/go.sum
renamed: main_dc/yalarba/api_es/internal/models/new/account.go -> main_dc/yalarba/api_yal/internal/models/account.go
renamed: main_dc/yalarba/api_es/internal/models/new/base.go -> main_dc/yalarba/api_yal/internal/models/base.go
renamed: main_dc/yalarba/api_es/internal/models/new/update_history.go -> main_dc/yalarba/api_yal/internal/models/update_history.go
moove new models for full api
new file: bin/api_yal
new file: cmd/main.go
new file: go.mod
new file: internal/handlers/auth.go
new file: internal/server/server.go
add server, files, dockerfile, build