- 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
19 lines
537 B
Text
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
|