anki/react
evandrocoan 19f1c98025 Fixed development compilation with Windows 10
1. Documented on README.development how to setup the environment
   for Windows.
2. Fixed qt/ts/package.json not working due usage of ; instead
   of &&
3. Fixed copy-qt-files rsync using Windows paths instead of Unix
   ones
4. Fixed Makefile's using Windows Linux Subsystem bash instead of
    the Cygwin one.
5. Ensured running the correct pip module by using python -m pip
    instead of just pip.
6. Fixed Makefiles using Windows `find` command, instead of the
    Cygwin's one (POSIX find).
7. Fixed pyenv sourcing/activate using /pyevn/bin/ instead of
    /python/Scripts/ on Windows.
8. Fixed pyaudio not installing/linking with portaudio on Windows
    by installing for a patched fork at evandroforks/pyaudio
9. Forked and fixed portaudio not building with Visual Studio 2017
    or superior and added the reference for the patched fork on
    README.development at evandroforks/portaudio.
2020-02-24 14:59:11 -03:00
..
public add a web UI proof of concept 2020-01-06 14:28:07 +10:00
src add a web UI proof of concept 2020-01-06 14:28:07 +10:00
.env add a web UI proof of concept 2020-01-06 14:28:07 +10:00
.eslintrc.js add a web UI proof of concept 2020-01-06 14:28:07 +10:00
.gitignore add a web UI proof of concept 2020-01-06 14:28:07 +10:00
Makefile Fixed development compilation with Windows 10 2020-02-24 14:59:11 -03:00
package-lock.json add a web UI proof of concept 2020-01-06 14:28:07 +10:00
package.json add a web UI proof of concept 2020-01-06 14:28:07 +10:00
pybackend.py
README add a web UI proof of concept 2020-01-06 14:28:07 +10:00
tsconfig.json add a web UI proof of concept 2020-01-06 14:28:07 +10:00

This is a proof of concept for an alternate, web-based UI. It is in the very
early stages, and does not do anything useful at the moment.

The code uses the helpers in ../tslib to communicate with the Python
backend defined in ../pylib/anki/pybackend.py, leveraging the same
protobuf definitions used for the Rust/Python bridge.

To try it:

- ensure 'tmux' is installed
- run 'make run' in the top level folder and close Anki
- copy a test .anki2 file to ~/test.anki2
- run 'make run' in this folder