Getting started
First of all, thank you for your interest in contributing to Kolibri! The project was founded by volunteers dedicated to helping make educational materials more accessible to those in need, and every contribution makes a difference. The instructions below should get you up and running the code in no time!
Note
Planning to integrate with Kolibri? Most APIs are internal and unstable, designed for Kolibri’s own use. Only /public/ endpoints are maintained with backwards compatibility. See the Backend architecture for details on API stability.
Prerequisites
Most of the steps below require entering commands into your Terminal, so you should expect to become comfortable with this if you’re not already.
If you encounter issues:
Searching online is often effective: chances are high that someone else encountered similar issues in the past
Please let us know if our docs can be improved, either by filing an issue or submitting a PR!
Note
Theoretically, Windows can be used to develop Kolibri, but we haven’t done much testing with it. If you’re running Windows, you are likely to encounter some issues with this guide, and we’d appreciate any help improving these docs for Windows developers!
Git and GitHub
Install and set up Git on your computer. Try this tutorial if you need more practice with Git!
Sign up and configure your GitHub account if you don’t have one already.
Fork the main Kolibri repository. This will make it easier to submit pull requests. Read more details about forking from GitHub.
Important: Install and set up the Git LFS extension.
Tip
Register your SSH keys on GitHub to avoid having to repeatedly enter your password
Checking out the code
First, clone your Kolibri fork to your local computer. In the command below, replace $USERNAME with your own GitHub username:
git clone git@github.com:$USERNAME/kolibri.git
Next, initialize Git LFS:
cd kolibri # Enter the Kolibri directory
git lfs install
To make git blame more informative, we keep track of commits that make a lot of changes to the codebase but are not directly related to the code itself, like large scale automatic code formatting. To prevent these commits appearing in the blame output, run:
git config blame.ignoreRevsFile .git-blame-ignore-revs
Finally, add the Learning Equality repo as a remote called upstream. That way you can keep your local checkout updated with the most recent changes:
git remote add upstream git@github.com:learningequality/kolibri.git
git fetch --all # Check if there are changes upstream
git checkout -t upstream/develop # Checkout the development branch
Python and uv
Kolibri uses uv to manage Python versions and virtual environments. Install uv following the official installation guide.
uv will automatically install the correct Python version when you set up the project — you do not need to install Python separately or use pyenv.
Note
Direct development on Windows is not supported. If you’re using a Windows machine, please set up your development environment using WSL (Windows Subsystem for Linux).
Python virtual environment
uv automatically creates and manages a virtual environment in the .venv directory. Set up the project:
uv sync --group dev # Creates venv, installs Python, installs all dev deps
Your virtual environment is now ready. Use uv run to execute commands within it:
uv run kolibri --version # Run kolibri CLI
uv run pytest # Run tests
To activate the virtual environment in your shell (for interactive use):
source .venv/bin/activate # Linux/Mac
Warning
Never install project dependencies using sudo pip install ...
Environment variables
Environment variables can be set in many ways, including:
adding them to a
~/.bash_profilefile (for Bash) or a similar file in your shell of choiceusing a
.envfile for this project, loaded with Pipenvsetting them temporarily in the current Bash session using
EXPORTor similar (not recommended except for testing)
There are two environment variables you should plan to set:
KOLIBRI_RUN_MODEis required.This variable is sent to our pingback server (private repo), and you must set it to something besides an empty string. This allows us to filter development work out of our usage statistics. There are also some special testing behaviors that can be triggered for special strings, as described elsewhere in the developer docs and integration testing Gherkin scenarios.
For example, you could add this line at the end of your~/.bash_profilefile:export KOLIBRI_RUN_MODE="dev"
KOLIBRI_HOMEis optional.This variable determines where Kolibri will store its content and databases. It is useful to set if you want to have multiple versions of Kolibri running simultaneously.
Install Python dependencies
Python dependencies are installed automatically by uv sync --group dev above. To update dependencies after pulling new changes:
uv sync --group dev
Install Node.js, pnpm and other dependencies
Install Node.js (version 20.x is required)
Install pnpm
Install non-python project-specific dependencies
For a more detailed guide to using nodeenv see Using nodeenv.
The Python project-specific dependencies installed above will install nodeenv, which is a useful tool for using specific versions of Node.js and other Node.js tools in Python environments. To setup Node.js and pnpm within the Kolibri project environment, ensure your Python virtual environment is active, then run:
# node.js, npm, and pnpm
nodeenv -p --node=20.19.0
npm install -g pnpm
# other required project dependencies
pnpm install
Database setup
To initialize the database run the following command:
kolibri manage migrate
Running the server
Development server
To start up the development server and build the client-side dependencies, use the following command:
pnpm run devserver
This will take some time to build the front-end assets, after which you should be able to access the server at http://127.0.0.1:8000/.
Alternatively, you can run the devserver with hot reload enabled using:
pnpm run devserver-hot
Tip
Running the development server to compile all client-side dependencies can take up a lot of system resources. To limit the specific frontend bundles that are built and watched, you can pass keywords to either of the above commands to only watch those.
pnpm run devserver-hot learn
Would build all assets that are not currently built, and run a devserver only watching the Learn plugin.
pnpm run devserver core,learn
Would run the devserver not in hot mode, and rebuild the core Kolibri assets and the Learn plugin.
For a complete reference of the commands that can be run and what they do, inspect the scripts section of the root ./package.json file.
Warning
Some functionality, such as right-to-left language support, is broken when hot-reload is enabled
Tip
If you get an error similar to “Node Sass could not find a binding for your current environment”, try running npm rebuild node-sass
Production server
In production, content is served through Whitenoise. Frontend static assets are pre-built:
# first build the assets
pnpm run build
# now, run the Django production server
kolibri start
Now you should be able to access the server at http://127.0.0.1:8080/.
Kolibri has support for being run as a Type=notify service under
systemd. When doing so, it
is recommended to run kolibri start with the --skip-update option, and
to run kolibri configure setup separately beforehand to handle database
migrations and other one-time setup steps. This avoids the kolibri start
command timing out under systemd if migrations are happening.
Separate servers
If you are working mainly on backend code, you can build the front-end assets once and then just run the Python devserver. This may also help with multi-device testing over a LAN.
# first build the front-end assets
pnpm run build
# now, run the Django devserver
pnpm run python-devserver
You can also run the Django development server and webpack devserver independently in separate terminal windows. In the first terminal you can start the django development server:
pnpm run python-devserver
and in the second terminal, start the webpack build process for frontend assets:
pnpm run frontend-devserver
Running in App Mode
Some of Kolibri’s functionality will differ when being run as a mobile app. In order to access the development server in that “app mode” context, open Kolibri using the URL logged in the terminal.
When the development server is started, you will see a message with a particular URL that you will need to use in order to initialize your browser session properly. Once your browser session has been initialized for use in the app mode, your browser session will remain in this mode until you clear your cookies.
Open this URL to activate app mode: http://127.0.0.1:8000/app/api/initialize/<token>
Where <token> will be a 32-digit hex string. This token is used to authenticate the app mode session.
To tweak the behaviour, the plugin that controls the app integrations can be edited in integration_testing/development_plugin.
Editor configuration
We have a project-level .editorconfig file to help you configure your text editor or IDE to use our internal conventions.
Check your editor to see if it supports EditorConfig out-of-the-box, or if a plugin is available.
Vue development tools
Vue.js devtools (Legacy) is a browser plugin that is very helpful when working with Vue.js components and Vuex. Kolibri is using Vue 2, so be sure to find the “Legacy” plugin as the latest version of the extension is for Vue 3.
To ensure a more efficient workflow, install appropriate editor plugins for Vue.js, ESLint, and stylelint.
Sample resources and data
Once you have the server running, proceed to import some channels and resources. To quickly import all available and supported Kolibri resource types, import with the token nakav-mafak for the Kolibri QA channel (~350MB).
Now you can create users, classes, lessons, etc manually. To auto-generate some sample user data you can also run:
kolibri manage generateuserdata
Linting and auto-formatting
Manual linting and formatting
Linting and code auto-formatting are done by Prettier and Black.
You can manually run the auto-formatters for the frontend using:
pnpm run lint-frontend:format
Or to check the formatting without writing changes, run:
pnpm run lint-frontend
The linting and formatting for the backend is handled using prek below.
Pre-commit hooks
It is strongly recommended to use pre-commit hooks to ensure code quality and consistency before committing. The hooks are identical to the automated build checks run by CI in Pull Requests, so using them locally will help you catch issues early.
prek (a faster drop-in replacement for pre-commit) is used to apply a full set of checks and formatting automatically each time that git commit runs. If there are errors, the Git commit is aborted and you are asked to fix the error and run git commit again.
prek is already installed as a development dependency (via uv sync --group dev), but you also need to enable it:
prek install
Important
Always run this command after cloning the repository to enable pre-commit hooks for your local development environment.
To run all checks in the same way that they will be run on our Github CI servers, run:
prek run --all-files
This is particularly useful to run before creating a pull request to ensure all files pass checks.
Tip
As a convenience, many developers install linting and formatting plugins in their code editor (IDE). Installing ESLint, Prettier, and Ruff plugins in your editor will catch most (but not all) code-quality checks.
Tip
prek can have issues running from alternative Git clients like GitUp. If you encounter problems while committing changes, run prek uninstall to disable hooks.
Warning
If you do not use prek or other linting tools, your code will likely fail our server-side checks and you will need to update the PR in order to get it merged.
Recommended workflow with prek
Make code changes
Stage your changes:
git add <files>Attempt commit:
git commit -m "Your message"If prek finds issues:
Review the errors and warnings
Many formatting issues will be auto-fixed - just review and re-stage the changes
Fix any remaining issues manually
Stage the fixes:
git add <files>Retry the commit:
git commit -m "Your message"
Once all checks pass, your commit will succeed
Design system
We have a large number of reusable patterns, conventions, and components built into the application. Review the Kolibri Design System to get a sense for the tools at your disposal, and to ensure that new changes stay consistent with established UI patterns.
Updating documentation
First, install the documentation dependencies:
uv sync --group docs
To make changes to documentation, edit the rst files in the kolibri/docs directory and then run:
make docs
You can also run the auto-build for faster editing from the docs directory:
cd docs
sphinx-autobuild --port 8888 . _build
Now you should be able to preview the docs at http://127.0.0.1:8888/.
Automated testing
Kolibri comes with a Javascript test suite based on Jest. To run all front-end tests:
pnpm run test
Kolibri comes with a Python test suite based on pytest. To run all back-end tests:
pytest
To run specific tests only, you can add the filepath of the file. To further filter either by TestClass name or test method name, you can add -k followed by a string to filter classes or methods by. For example, to only run a test named test_admin_can_delete_membership in kolibri/auth/test/test_permissions.py:
pytest kolibri/auth/test/test_permissions -k test_admin_can_delete_membership
To only run the whole class named MembershipPermissionsTestCase in kolibri/auth/test/test_permissions.py:
pytest kolibri/auth/test/test_permissions -k MembershipPermissionsTestCase
For more advanced usage, logical operators can also be used in wrapped strings, for example, the following will run only one test, named test_admin_can_delete_membership in the MembershipPermissionsTestCase class in kolibri/auth/test/test_permissions.py:
pytest kolibri/auth/test/test_permissions -k "MembershipPermissionsTestCase and test_admin_can_delete_membership"
You can run tests for a specific Python version using:
uv run --python 3.9 pytest # Runs tests with Python 3.9
CI runs tests across all supported Python versions automatically.
Manual testing
All changes should be thoroughly tested and vetted before being merged in. Our primary considerations are:
Performance
Accessibility
Compatibility
Localization
Consistency
For more information, see the next section on Manual testing & QA.
Submitting a pull request
Here’s a very simple scenario. Below, your remote is called origin, and Learning Equality is le.
First, create a new local working branch:
# checkout the upstream develop branch
git checkout le/develop
# make a new feature branch
git checkout -b my-awesome-changes
After making changes to the code and committing them locally, push your working branch to your fork on GitHub:
git push origin my-awesome-changes
Go to Kolibri’s GitHub page, and create a the new pull request.
Note
Please fill in all the applicable sections in the PR template and DELETE unecessary headings
Another member of the team will review your code, and either ask for updates on your part or merge your PR to Kolibri codebase. Until the PR is merged you can push new commits to your branch and add updates to it.
Learn more about our Development workflow and Release process
Development using Docker
Engineers who are familiar with Docker can start a Kolibri instance without setting up the full JavaScript and Python development environments on the host machine.
For more information, see the docker directory and the docker-* commands in the Makefile.
Development server
Start the Kolibri devserver running inside a container:
# only needed first time
make docker-build-base
# takes a few mins to run pip install -e + webpack build
make docker-devserver
Building a pex file
Note
The easiest way to obtain a pex file is to submit a Github PR and download the built assets from buildkite.
If you want to build and run a pex from the Kolibri code in your current local source files without relying on the github and the buildkite integration, you can run the following commands to build a pex file:
make docker-whl
The pex file will be generated in the dist/ directory. You can run this pex
file using the production server approach described below.
Production server
You can start a Kolibri instance running any pex file by setting the appropriate environment variables in your local copy of docker/env.list then running the commands:
# only needed first time
make docker-build-base
# run demo server
make docker-demoserver
The choice of pex file can be controlled by setting environment variables in the file ./docker/env.list:
KOLIBRI_PEX_URL: Download URL or the stringdefault
DOCKERMNT_PEX_PATH: Local path such as/docker/mnt/nameof.pex