UNPKG

python-proxy-scraper-client

Version:

A TypeScript client for interacting with a Python proxy scraper service

13 lines (12 loc) 456 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.config = void 0; const dotenv_1 = __importDefault(require("dotenv")); // Load environment variables from .env file dotenv_1.default.config(); exports.config = { backendUrl: process.env.BACKEND_URL || 'http://localhost:8000', };