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
This commit is contained in:
parent
aa31b917bd
commit
1e753b611a
2 changed files with 9 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
4
frontend/.gitignore
vendored
4
frontend/.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue