#!/bin/bash

if [ -f .venv/bin/activate ]; then
    source .venv/bin/activate
fi

watch_file .env
if [ -f .env ]; then
    dotenv .env
fi
