# create a script, e.g., check_environment.py
import os
for key, value in os.environ.items():
    print(f"{key}: {value}")
