From 1e753b611a828246efe4288e0463e4210ab34c20 Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Sun, 14 Dec 2025 09:57:02 -0300 Subject: [PATCH] chore: add scraper API URL to frontend .env.example and fix gitignore - Add NEXT_PUBLIC_SCRAPER_API_URL to frontend/.env.example - Re-enable .env* ignore rules in frontend/.gitignore --- frontend/.env.example | 7 +++++++ frontend/.gitignore | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/frontend/.env.example b/frontend/.env.example index 076865c..0a59413 100644 --- a/frontend/.env.example +++ b/frontend/.env.example @@ -17,6 +17,13 @@ NEXT_PUBLIC_SEEDER_API_URL=http://localhost:3001 # Production: # NEXT_PUBLIC_SEEDER_API_URL=https://seeder-dev.gohorsejobs.com +# Scraper API URL (for importing scraped jobs) +NEXT_PUBLIC_SCRAPER_API_URL=http://localhost:3002 + +# Production: +# NEXT_PUBLIC_SCRAPER_API_URL=https://scraper-dev.gohorsejobs.com + # Vercel Analytics (optional) NEXT_PUBLIC_VERCEL_ANALYTICS=false + diff --git a/frontend/.gitignore b/frontend/.gitignore index a3f8abc..4f7e0a5 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -31,8 +31,8 @@ yarn-error.log* .pnpm-debug.log* # env files (keep .env.example for documentation) -#.env* -#!.env.example +.env* +!.env.example # vercel .vercel