Commit graph

22 commits

Author SHA1 Message Date
Elshimy Ziad Magdy Taha
fcbe2f04f9 Collapse shared Go packages into the root module
internal/ and libs/ were split into 9 single-package Go modules, held
together by 22 replace directives across 7 go.mod files. The module
boundaries bought nothing: internal/dto, internal/browser and
internal/migrations were already plain packages in the root module and
worked fine.

Delete the 9 go.mod/go.sum pairs so those packages belong to the root
github.com/jobs-scraper module. Import paths are unchanged --
github.com/jobs-scraper/internal/domain resolves identically whether it
is its own module or a package inside the root module -- so no .go file
is touched by this commit.

Each deployable module now needs one require + one replace on the root
module instead of four to six:

  go.work entries:      14 -> 5
  replace directives:   22 -> 4
  go.mod files:         14 -> 5

Dependency versions are deliberately held at their previous pins. A bare
go mod tidy resolved several to latest once the per-package constraints
were gone (lib/pq 1.10.9 -> 1.12.3, amqp091-go 1.10.0 -> 1.13.0,
migrate 4.19.0 -> 4.19.1, go-openai 1.41.2 -> 1.42.0, genai
1.39.0 -> 1.66.0); all five are pinned back, since a structural refactor
should not move dependency versions.

Side effect worth noting: `go build ./...` at the repo root previously
matched only 2 packages, because everything else sat behind a module
boundary. It now covers all 12 shared packages, so the build and vet
steps in .forgejo/workflows/ actually exercise the shared code.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-04 17:27:10 +05:00
Elshimy Ziad Magdy Taha
96532caddf pipeline
Some checks failed
Deploy scraper-google / build (push) Failing after 4m46s
Deploy scraper-google / deploy (push) Has been skipped
2026-07-09 17:43:19 +05:00
Elshimy Ziad Magdy Taha
af52085ea3 fix errors and restructure project 2026-01-26 17:33:48 +05:00
Elshimy Ziad Magdy Taha
a281363b61 hiring cafe scraper 2025-12-29 12:19:33 +05:00
Elshimy Ziad Magdy Taha
13d10e9d11 get jobs method with filters 2025-12-18 12:25:07 +05:00
Elshimy Ziad Magdy Taha
cbcf9bdcc7 refactor 2025-12-17 17:42:42 +05:00
Elshimy Ziad Magdy Taha
3187757776 docker for api 2025-12-16 18:05:47 +05:00
Elshimy Ziad Magdy Taha
a8c253bdd5 used lever instead of greenhouse temporarily 2025-12-16 17:19:44 +05:00
Elshimy Ziad Magdy Taha
d57c1a4ce3 debug 2 2025-12-15 14:40:24 +05:00
Elshimy Ziad Magdy Taha
92cec1bf65 fixes 2025-12-15 14:36:37 +05:00
Elshimy Ziad Magdy Taha
ddd5f890f5 debug log 2025-12-15 14:19:40 +05:00
Elshimy Ziad Magdy Taha
46a4d54df9 only first page 2025-12-15 14:02:05 +05:00
Elshimy Ziad Magdy Taha
2a1ce7123e 24 hours delay 2025-12-15 13:48:58 +05:00
Elshimy Ziad Magdy Taha
6154e95d32 fix schedule 2025-12-15 13:02:28 +05:00
Elshimy Ziad Magdy Taha
4bbf4243c7 fixed docker-compose 2 2025-12-15 12:41:42 +05:00
Elshimy Ziad Magdy Taha
6f30edbce2 fix docker-compose 2025-12-15 12:34:47 +05:00
Elshimy Ziad Magdy Taha
721888383f fix go version 2025-12-15 12:29:11 +05:00
Elshimy Ziad Magdy Taha
a04ee0343c fix docker file 2025-12-15 12:27:36 +05:00
Elshimy Ziad Magdy Taha
ab9346e96b fix headless 2025-12-15 12:24:13 +05:00
Elshimy Ziad Magdy Taha
2589c81797 deploy 2025-12-15 12:17:08 +05:00
Elshimy Ziad Magdy Taha
1dd59249c5 schedule 2025-12-15 10:31:25 +05:00
Elshimy Ziad Magdy Taha
a195d3b8fe google scraper 2025-12-15 10:26:52 +05:00