-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStart.bat
More file actions
36 lines (31 loc) · 839 Bytes
/
Copy pathStart.bat
File metadata and controls
36 lines (31 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@echo off
setlocal
cd /d "%~dp0"
if not exist "venv\Scripts\activate.bat" (
echo.
echo This program has not been set up yet.
echo Please run "Install.bat" first.
echo.
pause
exit /b 1
)
if not exist "credentials.json" (
echo.
echo Your portal login has not been configured yet.
echo Please run "Install.bat" to finish setup.
echo.
pause
exit /b 1
)
call "venv\Scripts\activate.bat"
echo.
echo ==========================================================
echo Records Tracker is starting...
echo ==========================================================
echo.
echo The web interface will open in your browser in a moment.
echo.
echo KEEP THIS WINDOW OPEN while you're using the program.
echo To stop the program, close this window or press Ctrl+C.
echo.
python server.py --open