mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
12 lines
402 B
Bash
Executable file
12 lines
402 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export PYTHONWARNINGS=default
|
|
export PYTHONPYCACHEPREFIX=out/pycache
|
|
export ANKIDEV=${ANKIDEV-1}
|
|
export QTWEBENGINE_REMOTE_DEBUGGING=${QTWEBENGINE_REMOTE_DEBUGGING-8080}
|
|
export QTWEBENGINE_CHROMIUM_FLAGS=${QTWEBENGINE_CHROMIUM_FLAGS---remote-allow-origins=http://localhost:$QTWEBENGINE_REMOTE_DEBUGGING}
|
|
|
|
./ninja pylib qt pyenv-qt5.14
|
|
./out/pyenv-qt5.14/bin/python tools/run.py $*
|