gohorsejobs/seeder-api/.env.example
Tiago Yamamoto ddc4e2c2bf chore: add complete .env.example files for all services
- frontend/.env.example: Add SEEDER_API_URL
- seeder-api/.env.example: Expand with server config and backend URL
- job-scraper-multisite/.env.example: New file with scraping config
- Update gitignore files to allow .env.example tracking
2025-12-14 09:48:56 -03:00

19 lines
537 B
Text

# =============================================================================
# GoHorse Jobs Seeder API - Environment Variables Example
# =============================================================================
# Copy this file to .env and update the values
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=yourpassword
DB_NAME=gohorsejobs
DB_SSLMODE=disable
# Server Configuration
PORT=3001
NODE_ENV=development
# Backend API URL (to sync data)
BACKEND_API_URL=http://localhost:8521/api/v1