anki-sync-server/README.md

106 lines
3.5 KiB
Markdown
Raw Normal View History

2013-10-20 14:07:36 +08:00
ankisyncd
=========
2013-07-18 09:22:21 +08:00
2017-10-29 11:21:22 +08:00
[Anki][] is a powerful open source flashcard application, which helps you
quickly and easily memorize facts over the long term utilizing a spaced
repetition algorithm. Anki's main form is a desktop application (for Windows,
Linux and macOS) which can sync to a web version (AnkiWeb) and mobile
versions for Android and iOS.
This is a personal Anki server, which you can sync against instead of
AnkiWeb. It was originally developed to support the flashcard functionality
on Bibliobird, a web application for language learning.
2018-08-21 00:51:20 +08:00
This version is a fork of [jdoe0/ankisyncd](https://github.com/jdoe0/ankisyncd).
It supports Python 3 and Anki 2.1.
2013-07-18 09:22:21 +08:00
2018-08-23 22:28:27 +08:00
[Anki]: https://apps.ankiweb.net/
[dsnopek's Anki Sync Server]: https://github.com/dsnopek/anki-sync-server
2013-07-18 09:22:21 +08:00
Installing
----------
0. Install Anki. The currently supported version range is 2.1.1〜2.1.7. (Keep in
mind this range only applies to the Anki used by the server, clients can be
as old as 2.0.27 and still work.) Running the server with other versions might
work as long as they're not 2.0.x, but things might break, so do it at your
own risk. If for some reason you can't get the supported Anki version easily
on your system, you can use `anki-bundled` from this repo:
$ git submodule update --init
2018-08-22 20:45:52 +08:00
$ cd anki-bundled
$ pip install -r requirements.txt
2018-08-23 22:10:16 +08:00
Keep in mind `pyaudio`, a dependency of Anki, requires Python 3 and PortAudio
2018-08-23 22:28:27 +08:00
headers to be present before running `pip`. If you can't or don't want to
install these, you can try [patching Anki](#running-ankisyncd-without-pyaudio).
2018-08-23 22:10:16 +08:00
1. Install the dependencies:
2017-10-29 02:43:09 +08:00
$ pip install webob
2. Modify ankisyncd.conf according to your needs
3. Create user:
2013-08-02 02:06:51 +08:00
2013-10-30 05:48:02 +08:00
$ ./ankisyncctl.py adduser <username>
2013-08-02 02:06:51 +08:00
4. Run ankisyncd:
2013-10-30 05:48:02 +08:00
2018-08-28 23:15:40 +08:00
$ python -m ankisyncd
2013-08-02 02:06:51 +08:00
Installing (Docker)
-------------------
Follow [these instructions](https://github.com/kuklinistvan/docker-anki-sync-server#usage).
2013-10-21 07:57:58 +08:00
Setting up Anki
---------------
2018-08-21 00:40:03 +08:00
### Anki 2.1
Create a new directory in [the add-ons folder][addons21] (name it something
like ankisyncd), create a file named `__init__.py` containing the code below
and put it in the `ankisyncd` directory.
2018-08-21 00:40:03 +08:00
import anki.sync, anki.hooks, aqt
2018-08-21 00:40:03 +08:00
2018-08-23 22:19:14 +08:00
addr = "http://127.0.0.1:27701/" # put your server address here
anki.sync.SYNC_BASE = "%s" + addr
def resetHostNum():
aqt.mw.pm.profile['hostNum'] = None
anki.hooks.addHook("profileLoaded", resetHostNum)
2018-08-21 00:40:03 +08:00
### Anki 2.0
2018-08-23 22:19:14 +08:00
Create a file (name it something like ankisyncd.py) containing the code below
and put it in `~/Anki/addons`.
2013-10-21 07:57:58 +08:00
import anki.sync
2013-10-21 08:03:47 +08:00
2018-08-23 22:19:14 +08:00
addr = "http://127.0.0.1:27701/" # put your server address here
anki.sync.SYNC_BASE = addr
anki.sync.SYNC_MEDIA_BASE = addr + "msync/"
2017-10-29 11:21:22 +08:00
[addons21]: https://apps.ankiweb.net/docs/addons.html#_add_on_folders
2018-08-23 22:28:27 +08:00
Running `ankisyncd` without `pyaudio`
-------------------------------------
`ankisyncd` doesn't use the audio recording feature of Anki, so if you don't
want to install PortAudio, you can edit `anki-bundled/anki/sound.py` and
`anki-bundled/requirements.txt` to exclude `pyaudio`:
`ed` version:
$ echo '/# Packaged commands/,$d;w' | tr ';' '\n' | ed anki/sound.py
$ echo '/^pyaudio/d;w' | tr ';' '\n' | ed requirements.txt
`sed -i` version:
$ sed -i '/# Packaged commands/,$d' anki/sound.py
$ sed -i '/^pyaudio/d' requirements.txt
Manual version: remove every line past "# Packaged commands" in anki/sound.py,
remove every line starting with "pyaudio" in requirements.txt