mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 05:52:22 -04:00
16 lines
410 B
Batchfile
Executable file
16 lines
410 B
Batchfile
Executable file
@echo off
|
|
pushd "%~dp0"
|
|
|
|
set PYTHONWARNINGS=default
|
|
set PYTHONPYCACHEPREFIX=out\pycache
|
|
set ANKIDEV=1
|
|
set QTWEBENGINE_REMOTE_DEBUGGING=8080
|
|
set QTWEBENGINE_CHROMIUM_FLAGS=--remote-allow-origins=http://localhost:8080
|
|
set ANKI_API_PORT=40000
|
|
set ANKI_API_HOST=127.0.0.1
|
|
|
|
@if not defined PYENV set PYENV=out\pyenv
|
|
|
|
call tools\ninja pylib qt || exit /b 1
|
|
%PYENV%\Scripts\python tools\run.py %* || exit /b 1
|
|
popd
|