mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-25 00:59:07 +08:00
9 lines
169 B
Bash
9 lines
169 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
|
|
echo ".env file already exists"
|
|
fi |