jobs-monorepo/internal/pkg/infrastructure/go.mod
Elshimy Ziad Magdy Taha 8ac872bdc6 feat: restructure project into monorepo with CI/CD
- Reorganized project structure into services/ and apps/ directories for better separation of concerns
- Added comprehensive CI/CD pipeline with GitHub Actions for testing and Docker builds
- Created .dockerignore file to optimize container builds
- Updated Makefile with new targets for each service and application
- Added detailed README with architecture overview, setup instructions and development guidelines
- Moved cron-analyzer to dedicate
2025-11-01 16:20:44 +05:00

27 lines
734 B
Modula-2

module github.com/jobs-scraper/internal/pkg/infrastructure
go 1.24.0
toolchain go1.24.7
require (
github.com/golang-migrate/migrate/v4 v4.19.0
github.com/gorilla/mux v1.8.1
github.com/jobs-scraper/libs/ports v0.0.0
github.com/jobs-scraper/libs/repo v0.0.0
github.com/jobs-scraper/internal/pkg/utils v0.0.0
github.com/lib/pq v1.10.9
github.com/rabbitmq/amqp091-go v1.10.0
)
replace github.com/jobs-scraper/libs/repo => ../../../libs/repo
replace github.com/jobs-scraper/internal/pkg/utils => ../utils
replace github.com/jobs-scraper/libs/ports => ../../../libs/ports
require (
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
golang.org/x/sys v0.36.0 // indirect
)