Files
firewalletbrowser/start.sh

9 lines
171 B
Bash
Executable File

#!/usr/bin/env bash
# Find if .venv exists
if [ -d ".venv" ]; then
echo "Virtual environment found. Activating..."
source .venv/bin/activate
fi
python3 server.py