#!/bin/bash
# This script sets environment variables from a .env file if it exists.
set -a
if [ -f .env ]; then
  source .env
fi
set +a