Initial commit

This commit is contained in:
2025-04-09 09:34:15 +02:00
commit c19fb93ec5
47 changed files with 5174 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/bin/bash
# Installation script for Edison
# Create virtual environment
echo "Creating virtual environment..."
python -m venv venv
# Activate virtual environment
echo "Activating virtual environment..."
source venv/bin/activate
# Install package
echo "Installing Edison..."
pip install -e .
# Create logs directory
mkdir -p edison/logs
echo "Installation complete!"
echo "You can now use Edison by running: edison <your query>"
echo "For example: edison how to list all files in the current directory"
echo ""
echo "To uninstall, simply delete this directory and remove the venv."