agent-flow / scripts /setup /setup_env.sh
Tai Truong
fix readme
d202ada
raw
history blame contribute delete
173 Bytes
#!/bin/bash
# Create a .env if it doesn't exist, log all cases
if [ ! -f .env ]; then
echo "Creating .env file"
touch .env
else
# do nothing and do not log
true
fi