Files
langflow/scripts/setup/setup_env.sh
Gabriel Luiz Freitas Almeida db72268a04 chore: remove unused script and log (#3343)
* refactor: Removed the unnecessary update_poetry script.

* fix: Handle existing .env file without logging unnecessary message.
2024-08-15 04:36:06 -07:00

11 lines
173 B
Bash

#!/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