Code für Weblate beisteuern¶
Verstehen Sie den Quellcode von Weblate, indem Sie Weblate-Quellcode, Weblate-Frontend und Weblate-Interna durchgehen.
Mit der Codebasis beginnen¶
Machen Sie sich mit der Codebasis von Weblate vertraut, indem Sie die mit good first issue gekennzeichneten Fehler ausprobieren.
Sie können gerne mit der Arbeit an diesen Themen beginnen, ohne zu fragen. Kündigen Sie dies einfach im Issue an, damit klar ist, dass jemand an diesem Problem arbeitet.
Weblate lokal ausführen¶
Der einfachste Weg, um mit der Weblate-Entwicklung zu beginnen, ist Installation aus Quellen zu folgen. Dadurch erhalten Sie eine Python-Einsatzumgebung mit bearbeitbarem Weblate-Quellcode.
Klonen des Weblate-Quellcodes:
git clone https://github.com/WeblateOrg/weblate.git cd weblate
Weblate und alle für die Entwicklung nützlichen Abhängigkeiten installieren:
uv sync --all-extras --dev
Einen Entwicklungsserver starten:
uv run weblate runserver
Je nach Konfiguration möchten Sie vielleicht auch Celery-Worker starten:
uv run ./weblate/examples/celery start
Um Tests durchzuführen (siehe Weblate lokal testen für weitere Details):
. scripts/test-database.sh uv run pytest
Siehe auch
Development container for tests and lint¶
The development container prepares Python dependencies, PostgreSQL, Valkey, compiled translations, and static files for running tests and lint checks. It supports ordinary clones and linked Git worktrees. Each checkout has its own containers, network, database, virtual environment, and caches, with no published host ports in the default test profile. The optional application profile runs Weblate and workers for local QA with separate storage and dynamically allocated localhost ports.
Install Docker with the Compose plugin, Git, and Python 3.12 or newer on the host. For the command-line workflow, also install Node.js 20 or newer and the Dev Container CLI:
npm install --global @devcontainers/cli@0.89.0
./scripts/devcontainer up
./scripts/devcontainer doctor
./scripts/devcontainer exec -- uv run pytest weblate/lang/tests.py
./scripts/devcontainer exec -- uv run prek run --all-files
Alternatively, open the checkout in Visual Studio Code with its Dev Containers
extension and select Dev Containers: Reopen in Container. Both
workflows use .devcontainer/devcontainer.json and wait for bootstrap
to finish. The CLI must be installed separately for the default backend of
scripts/devcontainer. To use Docker Compose directly without Node.js or
the Dev Container CLI, pass --backend compose before the command:
./scripts/devcontainer --backend compose up
./scripts/devcontainer --backend compose exec -- uv run pytest weblate/lang/tests.py
Both backends share the same test environment for a checkout. The Compose
backend runs bootstrap on each up invocation. CI checks both backends on
ARM Linux runners, including concurrent application QA in separate worktrees.
Bootstrap uses the frozen dependency lock and builds lxml and xmlsec
from source, matching CI. Initial setup requires network access to download
images and dependencies; lint hooks download their environments on first use.
After changing dependencies, rerun:
./scripts/devcontainer bootstrap
Pytest creates and migrates its test database on first use and reuses it on
subsequent runs. To recreate it after incompatible migration changes, pass
--create-db to pytest. Existing host virtual environments and local
weblate/settings.py are not used by the container.
For a separate task, create a worktree and start its environment:
git worktree add ../weblate-task -b task/example
cd ../weblate-task
./scripts/devcontainer up
The environment identifier is derived from the checkout’s absolute path,
so changing branches preserves the environment. Stop or destroy the environment
before moving or deleting its checkout. Linked worktrees also mount the shared
Git metadata directory at its original path; Git operations therefore affect
the same repository as host Git operations. Other worktrees‘ sources are not
mounted. Unset COMPOSE_PROJECT_NAME when using this workflow, and remove
its assignments from .env files in the checkout, .devcontainer,
and the directory from which you launch the tools. Initialization rejects
these assignments because they can override the checkout-specific project name.
To stop containers while retaining their data, or explicitly delete their containers and volumes:
./scripts/devcontainer stop
./scripts/devcontainer destroy --yes
These commands only manage the current checkout’s test environment. They do
not remove its source files or the application environment started by
rundev.sh. Tests run through ./rundev.sh test share this test
environment, so stopping it affects both test launchers. Closing the IDE stops
the entire checkout’s Compose project, including application QA, while retaining
its data. Launcher stop commands affect only their selected profile. Use
--all before stop, logs, or destroy to manage both profiles in the
checkout.
If setup fails, use ./scripts/devcontainer doctor to inspect the source
paths, service connections, dependency consistency, and test assets. Service
readiness checks have a timeout. Containers remain available for inspection;
their logs can be read with docker compose:
docker compose -f .devcontainer/compose.yaml -f .devcontainer/compose.local.json logs
The generated .devcontainer/compose.local.json is ignored by Git and
contains checkout-specific paths. Keep credentials and host configuration out
of this file.
The shared development image includes native Chromium and its matching driver from the XtraDeb Ubuntu repository on ARM and amd64. These system packages are not version-pinned. To fetch browser updates, rebuild without the Docker build cache and recreate the test container:
./scripts/devcontainer --backend compose compose -- build --no-cache developer
./scripts/devcontainer --backend compose restart
To verify browser startup, page loading, and JavaScript execution, or run the existing Selenium suite with a required browser:
./scripts/devcontainer doctor --browser
./scripts/devcontainer browser-test
./rundev.sh browser-test -k test_login_form_accessibility
./rundev.sh browser-test --target weblate/trans/tests/test_selenium.py::SeleniumTests::test_js_unit_tests
browser-test prepares the isolated test environment, runs browser diagnostics,
and sets CI_SELENIUM=1 so unavailable WebDriver fails instead of skipping.
It prints pytest’s test totals and skip reasons, preserving legitimate skips and
pytest’s exit status. Additional arguments are passed to pytest; repeat
--target to select specific test paths or node IDs instead of the default
Selenium module. doctor --browser checks the test profile through either
launcher and reports installed browser and driver versions.
The image sets WEBLATE_TEST_CHROME_BINARY and WEBLATE_TEST_CHROMEDRIVER
to the installed executable paths. These developer-only variables are shared by
the diagnostic and Selenium tests, avoiding automatic browser downloads. Outside
the image, leaving them unset preserves Selenium’s default browser discovery.
Use your own browser with the application profile’s URL for exploratory QA.
Linux and WSL2 with a checkout in the Linux filesystem are the primary targets. macOS Docker Desktop and Codespaces use the same configuration, but are not covered by the Linux CI smoke test. Native Windows paths and remote Docker daemons are not supported by the host-path mounts.
Weblate lokal in Docker ausführen¶
Install Docker with the Compose plugin, Git, and Python 3.12 or newer on the host. Start the development application with:
./rundev.sh
This is equivalent to ./scripts/devcontainer --profile app up. Both commands
use the same launcher and Compose project as the test environment, without
requiring Node.js or the Dev Container CLI for the application profile.
The launcher builds the development image, starts Weblate with supervised web
and Celery workers, and prints the application and Maildev mailbox URLs when
Weblate is ready. Sign in as admin with password admin. The installation
starts empty; continue with Übersetzungsprojekte und Komponenten hinzufügen.
Docker assigns free HTTP ports bound to 127.0.0.1. Each worktree has its own
application database, Valkey instance, data, virtual environment, home, and
caches, separate from the test profile. SMTP, PostgreSQL, and Valkey ports are
not published. Weblate uses the discovered application URL for generated links
and authentication origins. To display the current URLs again:
./rundev.sh urls
./rundev.sh urls --json
To exercise real background workers through complete application journeys:
./rundev.sh application-test
This is also available as ./scripts/devcontainer application-test. It starts
the application profile and uses its administrator API token to import a small
component archive, save a translation, request a background commit, and inspect
the committed Git file. It then checks the exported ZIP, eventual translation
statistics in the API and rendered application page, translation memory, and a
translation notification delivered to
Maildev. Export generation itself is synchronous; its contents must reflect the
completed background work.
A separate transaction check queues a real task before its fixture row is committed, waits for a retry, and verifies successful redelivery after commit. The suite requires non-eager Celery and the application’s Valkey broker and Maildev. Polls have deadlines, worker task failures include their tracebacks, and failures print the application service logs. CI runs these journeys in both the Docker development job and concurrent isolated worktrees.
Each invocation creates a uniquely named celery-qa- project and notification
recipient with an unusable password. These fixtures remain available for
inspection, including after failure; the suite does not reset existing data.
Remove these projects and users through the application when finished, or
destroy --yes the disposable application environment.
Ports can change after containers are recreated or restarted. Use
./rundev.sh restart to restart and rediscover them; direct Docker restarts
cannot initialize the application domain. Ordinary startup reuses unchanged
containers. Application containers do not restart automatically after Docker
restarts. When the image changes Python minor versions, startup recreates the
application virtual environment and reinstalls dependencies. Application data
is retained.
To access the application database from inside its container:
./rundev.sh exec -- weblate dbshell
The application service definitions are in dev-docker/docker-compose.yml
and are included by the shared Compose configuration. Use the launchers to
initialize paths and ports. For other Compose operations, use
./rundev.sh compose -- COMMAND (or existing shortcuts such as
./rundev.sh ps). Project-wide Compose commands can affect both profiles.
Existing development environments are not migrated automatically. Before
updating from the old launcher, stop its containers with its ./rundev.sh stop
command. If already updated, identify the old containers using docker ps
and stop them explicitly. The new launcher leaves their databases, volumes,
and dev-docker/data/ untouched and starts with fresh application data.
To execute tests, run the script with the test parameter and pytest arguments,
for example running only tests in the weblate.machine module:
./rundev.sh test --exitfirst weblate/machine
The command automatically starts and bootstraps the development container using Docker Compose, without requiring the Dev Container CLI. It runs independently of the application and workers, with separate databases, virtual environments, and caches. Each invocation refreshes dependencies and test assets before running pytest.
To display application logs:
./rundev.sh logs
To stop only the application profile, retaining its data:
./rundev.sh stop
Use ./scripts/devcontainer stop to stop only tests. To stop or destroy both
profiles, including their volumes when destroying:
./rundev.sh --all stop
./rundev.sh --all destroy --yes
Without --all, destroy --yes removes only the selected profile’s
containers and volumes. Other worktrees remain running.
Warnung
Dieser Container ist nicht für den Produktionseinsatz geeignet. Die Sicherheit wird geopfert, um die Entwicklung zu erleichtern.
Bootstrapping der Entwicklungsinstanz¶
Sie können import_demo verwenden, um Demo-Übersetzungen zu erstellen und createadmin, um einen Admin-Benutzer anzulegen.
Wenn Sie auch Abrechnung installiert haben, können Sie mit billing_demo ein Demoprojekt für die Abrechnung erstellen.
Weblate mit PyCharm programmieren¶
PyCharm ist eine bekannte Entwicklungsumgebung für Python. Hier sind einige Richtlinien, die Ihnen helfen, Ihr Weblate-Projekt in dieser IDE einzurichten.
Da Sie das GitHub-Repository gerade in einen Ordner geklont haben, öffnen Sie es einfach mit PyCharm. Sobald die IDE geöffnet ist, besteht der erste Schritt darin, den Interpreter anzugeben, den Sie verwenden möchten:
Wählen Sie die von uv sync --all-extras --dev erstellte .venv-Einsatzumgebung aus, um sie an diejenige für die Befehlszeile anzupassen. Sie können PyCharm auch eine Python-Umgebung für Sie erstellen lassen, allerdings wird die uv-verwaltete Einsatzumgebung bevorzugt:
Vergessen Sie nicht, die Abhängigkeiten zu installieren, sobald der Interpreter eingestellt ist. Wenn Sie die bevorzugte uv-verwaltete Einsatzumgebung verwenden, führen Sie in der Konsole den Befehl uv sync --all-extras --dev aus.
Der zweite Schritt besteht darin, die richtigen Informationen zu setzen, um Django nativ in PyCharm zu verwenden: Die Idee ist, die Einheitentests sofort in der IDE auslösen zu können. Dazu müssen Sie den Wurzelpfad des Django-Projekts und den Pfad zu den Einstellungen angeben:
Seien Sie vorsichtig, das Django project root ist das eigentliche Wurzelverzeichnis des Repositorys, nicht das Unterverzeichnis von Weblate. Für die Einstellungen können Sie die weblate/settings_test.py aus dem Repository verwenden, aber Sie können auch Ihre eigene Einstellung erstellen und sie dort festlegen.
Der letzte Schritt besteht darin, den Server zu starten und Haltepunkte in den Code zu setzen, um ihn zu debuggen. Dies geschieht durch das Erstellen einer neuen Django Server-Konfiguration:
Hinweis
Seien Sie vorsichtig mit der Eigenschaft namens No reload: Sie verhindert, dass der Server live neu geladen wird, wenn Sie Dateien ändern. Dadurch bleiben die vorhandenen Debugger-Haltepunkte erhalten, obwohl sie normalerweise beim Neuladen des Servers verworfen würden.