pipelines/config.py
Timothy J. Baek 39da1c982a fix
2024-05-21 18:47:46 -07:00

13 lines
263 B
Python

import os
####################################
# Load .env file
####################################
try:
from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv("./.env"))
except ImportError:
print("dotenv not installed, skipping...")