-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
20 additions
and
0 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,9 @@ | ||
@echo off | ||
call %~dp0\setenv.bat | ||
echo Current Directory: %cd% | ||
cd %PROJECT_DIR% | ||
echo New Current Directory: %cd% | ||
pip install -e . | ||
timeout /t 0.25 >nul | ||
cls | ||
oproof "What is 2 + 2?" "4" %* |
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,11 @@ | ||
@echo off | ||
set PROJECT_DIR=%~dp0.. | ||
echo Project Root Directory: %PROJECT_DIR% | ||
set SCRIPTS_DIR=%PROJECT_DIR%\scripts | ||
echo Scripts Directory: %SCRIPTS_DIR% | ||
set VENV_DIR=%PROJECT_DIR%\venv\oproof | ||
echo Virtual Environment Directory: %VENV_DIR% | ||
call %VENV_DIR%\Scripts\activate | ||
setx PROJECT_DIR %PROJECT_DIR% | ||
setx SCRIPTS_DIR %SCRIPTS_DIR% | ||
setx VENV_DIR %VENV_DIR% |