Skip to content

Commit

Permalink
Merge pull request #67 from WeCanCodeTrust/main
Browse files Browse the repository at this point in the history
Linux support clean up a bit and also changes on the start.bat and setup.bat
  • Loading branch information
LIL-JABA authored May 4, 2024
2 parents de4b230 + 8fbbe9c commit e8eba1b
Show file tree
Hide file tree
Showing 18 changed files with 1,018 additions and 880 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ src/system/settings.json
output/sorted.txt
proxy.txt
log.txt
.vs/
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ urllib3
requests
colorama
keyboard
inquirerpy
InquirerPy
aiohttp
pywin32
clear
13 changes: 12 additions & 1 deletion setup.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
@echo off

pip install -r requirements.txt
echo install requirements
pip install -r requirements.txt > nul
echo install requirements done

set /P choice="Do you want to run the program now? (y/n): "

if "%choice%" == "y" (
python main.py
)
) else (
echo You can run the program by typing 'python main.py' in the terminal
)

pause
Loading

0 comments on commit e8eba1b

Please sign in to comment.