DazedTL/start.sh
2023-11-15 21:21:25 -08:00

11 lines
No EOL
284 B
Bash
Executable file

#!/bin/bash
read -p "Do you want to edit the .env file? (y/n): " choice
if [ "$choice" == "y" ] || [ "$choice" == "Y" ]; then
nano .env
echo "Continuing..."
else
echo "Continuing without editing .env file..."
fi
python3 -m pip install -r requirements.txt
python3 start.py