forked from MatthiasHu/seekers
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
karl-zschiebsch
committed
May 19, 2024
1 parent
04f9b54
commit de86e50
Showing
3 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@echo off | ||
echo Setting up virtual environment ... | ||
python -m venv venv | ||
echo Installing requirements ... | ||
.\venv\Scripts\pip install -r requirements.txt cx_Freeze | ||
echo Building binaries ... | ||
start .\venv\Scripts\cxfreeze -c run_seekers.py --target-dir dist/seekers --include-files config.ini | ||
start .\venv\Scripts\cxfreeze -c run_client.py --target-dir dist/client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters