mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-31 06:42:06 +00:00
fix dotenv dependency, also add license agreement
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
cd "$(dirname "$0")"
|
||||
# Autonomous Coder UI Launcher for Unix/Linux/macOS
|
||||
# This script launches the web UI for the autonomous coding agent.
|
||||
|
||||
@@ -8,9 +9,6 @@ echo " Autonomous Coder UI"
|
||||
echo "===================================="
|
||||
echo ""
|
||||
|
||||
# Get the directory where this script is located
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
||||
# Check if Python is available
|
||||
if ! command -v python3 &> /dev/null; then
|
||||
if ! command -v python &> /dev/null; then
|
||||
@@ -24,4 +22,4 @@ else
|
||||
fi
|
||||
|
||||
# Run the Python launcher
|
||||
$PYTHON_CMD "$SCRIPT_DIR/start_ui.py" "$@"
|
||||
$PYTHON_CMD start_ui.py "$@"
|
||||
|
||||
Reference in New Issue
Block a user