fix dotenv dependency, also add license agreement

This commit is contained in:
Auto
2026-01-06 17:03:35 +02:00
parent 908754302a
commit 1e20ba9cc9
5 changed files with 693 additions and 14 deletions

View File

@@ -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 "$@"