# Example environment configuration for ExcelStream examples
# Copy this file to .env and fill in your actual credentials
# NEVER commit .env to version control!
# PostgreSQL connection string for postgres_streaming.rs example
# Format: postgres://username:password@host:port/database
DATABASE_URL=postgres://your_username:your_password@localhost:5432/your_database
# Example with special characters (use URL encoding):
# If password is "abcd@1234", encode @ as %40:
# DATABASE_URL=postgres://user:abcd%401234@host:5432/db