The source files of Panlexia are really are in GitHub at
https://github.com/barumau/panlexia. All contents are text files, mostly dictionary files (.tsv) or program source code files (.py). They are easy to edit with any text editor or GitHub's own online editor, see
https://docs.github.com/en/codespaces/t ... sed-editor.
Currently my own setup is WSL + VSCode (Windows Subsystem for Linux + Visual Studio Code). It's setup in 15 minutes for example by following the instructions in
https://www.youtube.com/watch?v=CokQE8kxxHQ. It may look like wizardry for non-programmers but it's not hard. Then start WSL and type the following commands:
# Install Git version control system:
sudo apt-get install git
# Configure yourself as Git user
git config --global user.name "Your Name"
git config --global user.email "
youremail@domain.com"
# Download Panlexia workspace to your system:
git clone
https://github.com/barumau/panlexia.git
# Open Panlexia workspace in VSCode
code panlexia
From then on you can always start the workspace by typing only
code panlexia.
After making changes you need to upload them to GitHub database. You can read a Git guide to understand it better, but here is a simple way to do it:
# Upload latest changes from GitHub
git pull
# Create branch for your changes
git checkout -b my_branch
# Make your changes in VSCode. See your changes by typing:
git diff
# Commit all (-a) your changes with a message (-m):
git commit -a -m "Describe my change"
# Upload your branch to GitHub
git push origin my_branch
The source files of Panlexia are really are in GitHub at [url]https://github.com/barumau/panlexia[/url]. All contents are text files, mostly dictionary files (.tsv) or program source code files (.py). They are easy to edit with any text editor or GitHub's own online editor, see [url]https://docs.github.com/en/codespaces/the-githubdev-web-based-editor[/url].
Currently my own setup is WSL + VSCode (Windows Subsystem for Linux + Visual Studio Code). It's setup in 15 minutes for example by following the instructions in [url]https://www.youtube.com/watch?v=CokQE8kxxHQ[/url]. It may look like wizardry for non-programmers but it's not hard. Then start WSL and type the following commands:
# Install Git version control system:
sudo apt-get install git
# Configure yourself as Git user
git config --global user.name "Your Name"
git config --global user.email "youremail@domain.com"
# Download Panlexia workspace to your system:
git clone https://github.com/barumau/panlexia.git
# Open Panlexia workspace in VSCode
code panlexia
From then on you can always start the workspace by typing only [i]code panlexia[/i].
After making changes you need to upload them to GitHub database. You can read a Git guide to understand it better, but here is a simple way to do it:
# Upload latest changes from GitHub
git pull
# Create branch for your changes
git checkout -b my_branch
# Make your changes in VSCode. See your changes by typing:
git diff
# Commit all (-a) your changes with a message (-m):
git commit -a -m "Describe my change"
# Upload your branch to GitHub
git push origin my_branch