# EAMCO Environment Variables # Copy this file to .env and fill in actual values # NEVER commit .env to version control # =========================================== # Database Credentials (All Services) # =========================================== POSTGRES_USERNAME=postgres POSTGRES_PW=your_password_here POSTGRES_SERVER=192.168.1.204 POSTGRES_PORT=5432 POSTGRES_DBNAME=auburnoil # =========================================== # Flask Secret Key (eamco_office_api) # =========================================== # Generate with: python -c "import secrets; print(secrets.token_hex(32))" SECRET_KEY=your_secret_key_here # =========================================== # Authorize.net API Credentials # =========================================== # Production credentials (used by LOCAL and PRODUCTION modes) AUTHORIZE_API_LOGIN_ID=your_api_login_id_here AUTHORIZE_TRANSACTION_KEY=your_transaction_key_here # Development/Sandbox credentials (used by DEVELOPMENT mode) AUTHORIZE_API_LOGIN_ID_DEV=your_sandbox_api_login_id_here AUTHORIZE_TRANSACTION_KEY_DEV=your_sandbox_transaction_key_here # =========================================== # VoIP.ms Credentials (eamco_voipms) # =========================================== VOIPMS_API_USERNAME=your_voipms_username VOIPMS_API_PASSWORD=your_voipms_password TARGET_DID=your_did_number TARGET_SIP_ACCOUNT=your_sip_account TARGET_CELLPHONE_1=your_cellphone_1 TARGET_CELLPHONE_2=your_cellphone_2 VOIPMS_API_URL=https://voip.ms/api/v1/rest.php