Some checks failed
CI / Linting (Biome) (push) Failing after 36s
CI / Tests (push) Successful in 5m54s
CI / Type Check (adzuna-extractor) (push) Successful in 1m6s
CI / Type Check (gradcracker-extractor) (push) Successful in 1m9s
CI / Type Check (hiringcafe-extractor) (push) Successful in 1m5s
CI / Type Check (orchestrator) (push) Successful in 1m21s
CI / Type Check (startupjobs-extractor) (push) Successful in 1m4s
CI / Type Check (ukvisajobs-extractor) (push) Successful in 1m4s
CI / Documentation (push) Successful in 1m52s
Adds extractor packages: arbeitnow, ashby, careerjet, fourdayweek,
greenhouse, himalayas, jobicy, jooble, lever, reed, remoteok, remotive,
themuse, usajobs, weworkremotely, workday — each with manifest, package
metadata and README.
Pipeline / shared:
- shared/job-fingerprint: stable hash for cross-source dedup, with tests
- discover-jobs: dedup via fingerprint and richer per-source merging
- jobs repository: fingerprint-aware upsert / lookup
- settings-registry, settings types/routes, demo-defaults: knobs for the
new sources
- shared extractors index: register the new manifests
- location-support, profiles route: small fixes for the new sources
Tooling:
- scripts/smoke-extractors.ts to sanity-check each source locally
- scripts/jobber-cron-{cherepaha,dobkin}.env.example: per-host cron
templates (CHANGEME placeholders only)
- .env.example: documented env vars for the new extractors
- .gitignore: ignore extractors/*/storage/ runtime caches (was ukvisajobs only)
Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
676 B
Plaintext
25 lines
676 B
Plaintext
#
|
|
# Jobber cron env — dobkin
|
|
# Copy to /root/.jobber-cron-dobkin.env (chmod 600)
|
|
#
|
|
# Used by: scripts/jobber-pipeline-telegram.sh
|
|
#
|
|
|
|
# JobOps base URL (where the app is reachable from the cron host)
|
|
JOBOPS_URL=http://127.0.0.1:3005
|
|
|
|
# Optional: limit number of jobs linked in Telegram message
|
|
JOB_TELEGRAM_MAX_JOBS=25
|
|
|
|
# Optional: comma-separated sources to run (leave empty to use server defaults)
|
|
# JOBBER_PIPELINE_SOURCES=adzuna,gradcracker,ukvisajobs
|
|
|
|
# App-level Basic Auth (enables per-user separation when set on the server)
|
|
BASIC_AUTH_USER=dobkin
|
|
BASIC_AUTH_PASSWORD=CHANGEME
|
|
|
|
# Telegram bot + chat destination
|
|
TELEGRAM_BOT_TOKEN=CHANGEME
|
|
TELEGRAM_CHAT_ID=CHANGEME
|
|
|