Listudy is a application for chess training.
If you find any bugs, please let me know. You can submit bugs here: https://github.com/ArneVogel/listudy/issues
Help with translations if you can. You find the current translations here. If you want to help with a language that is not currently avaliable message me or create a issue and I will create the language.
This project used gettext for translations. Gettext uses PO files for translations (example). In these files the original english sentence or phrase msgid
is above what the translation should be msgstr
. Only edit msgstr
in the PO files. Sometimes special sequences like %{name}
are in the english text. These must be copied exactly (not translated) into the translation.
Listudy is developed in Elixir using the phoenix framework. It uses postgresql as database. You can checkout scripts/prod/*.sh
for how the server is run in production.
To generate opening svg images Python3.8 is used together with python-chess. This should be optional.
To start the server:
mix setup
npm install --prefix assets
. For Windows, you need to run cd assets
then npm install
then cd ..
.mkdir priv/static/study_pgn
mkdir priv/static/images/opening
mix ecto.create
, migrate databse with mix ecto.migrate
, fill database with seed dataset mix run priv/repo/seeds.exs
mix phx.server
Now you can visit localhost:4000
from your browser.