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
+22
View File
@@ -0,0 +1,22 @@
@echo off
REM Installation script for Edison on Windows
echo Creating virtual environment...
python -m venv venv
echo Activating virtual environment...
call venv\Scripts\activate.bat
echo Installing Edison...
pip install -e .
echo Creating logs directory...
mkdir edison\logs
echo.
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.
pause