# Server Configuration PORT=3000 NODE_ENV=development # Main Database (PostgreSQL - for storing API configurations) DB_HOST=localhost DB_PORT=5432 DB_NAME=api_builder DB_USER=postgres DB_PASSWORD=postgres # JWT Secret JWT_SECRET=your-super-secret-jwt-key-change-this-in-production JWT_EXPIRES_IN=24h # API Rate Limiting RATE_LIMIT_WINDOW_MS=900000 RATE_LIMIT_MAX_REQUESTS=100 # Target Databases Configuration (JSON format) # This is where your API endpoints will execute queries TARGET_DATABASES='[ { "id": "main_postgres", "name": "Main PostgreSQL", "type": "postgresql", "host": "localhost", "port": 5432, "database": "your_database", "user": "your_user", "password": "your_password", "ssl": false }, { "id": "analytics_db", "name": "Analytics Database", "type": "postgresql", "host": "localhost", "port": 5432, "database": "analytics", "user": "analytics_user", "password": "analytics_password", "ssl": false } ]'