- Added new job analysis result repository and database migration system - Expanded job creation to support Glassdoor as a new provider alongside LinkedIn - Added CV analysis service launch configuration in VS Code - Updated Makefile with new commands for scraper service and migrations - Improved environment loading in cron analyzer to support local development - Added error handling for unsupported job providers - Integrated job analysis results
27 lines
702 B
Modula-2
27 lines
702 B
Modula-2
module github.com/jobs-scraper/shared/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/shared/ports v0.0.0
|
|
github.com/jobs-scraper/shared/repo v0.0.0
|
|
github.com/jobs-scraper/shared/utils v0.0.0
|
|
github.com/lib/pq v1.10.9
|
|
github.com/rabbitmq/amqp091-go v1.10.0
|
|
)
|
|
|
|
replace github.com/jobs-scraper/shared/repo => ../repo
|
|
|
|
replace github.com/jobs-scraper/shared/utils => ../utils
|
|
|
|
replace github.com/jobs-scraper/shared/ports => ../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
|
|
)
|