You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This script is used to create symlinks for the environment variables in the apps and packages directories. The source of the environment variables is the .env file in the env package directory.
# Define the directories
app_dir="./apps"
packages_dir="./packages"
# Check if the .env file exists in the `env`` package directory
if [[ ! -f "$packages_dir/env/.env" ]]; then
echo "The .env file does not exist in $packages_dir/env/"