jobs-monorepo/services/linked-scraper/go.mod
Elshimy Ziad Magdy Taha 0ab6954231 feat: add job analysis infrastructure and Glassdoor support
- 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
2025-10-24 15:10:20 +05:00

32 lines
1,000 B
Modula-2

module github.com/jobs-scraper/services/scraper
go 1.24.0
toolchain go1.24.7
require (
github.com/PuerkitoBio/goquery v1.10.3
github.com/jobs-scraper/shared/domain v0.0.0
github.com/jobs-scraper/shared/infrastructure v0.0.0
github.com/jobs-scraper/shared/repo v0.0.0
github.com/jobs-scraper/shared/utils v0.0.0
github.com/joho/godotenv v1.5.1
)
require (
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/golang-migrate/migrate/v4 v4.19.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/rabbitmq/amqp091-go v1.10.0 // indirect
golang.org/x/net v0.44.0 // indirect
)
replace github.com/jobs-scraper/shared/domain => ../../shared/domain
replace github.com/jobs-scraper/shared/infrastructure => ../../shared/infrastructure
replace github.com/jobs-scraper/shared/repo => ../../shared/repo
replace github.com/jobs-scraper/shared/utils => ../../shared/utils