- 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
15 lines
418 B
Modula-2
15 lines
418 B
Modula-2
module github.com/jobs-scraper/apps/cv-analyzer
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/jobs-scraper/internal/pkg/domain v0.0.0
|
|
github.com/jobs-scraper/libs/repo v0.0.0-00010101000000-000000000000
|
|
github.com/joho/godotenv v1.5.1
|
|
)
|
|
|
|
require github.com/lib/pq v1.10.9 // indirect
|
|
|
|
replace github.com/jobs-scraper/internal/pkg/domain => ../../internal/pkg/domain
|
|
|
|
replace github.com/jobs-scraper/libs/repo => ../../libs/repo
|