Weblate is libre software web-based continuous localization system, used by over 2500 libre projects and companies in more than 165 countries.
Django based website for Weblate, running at <https://weblate.org/>.
Find Weblate at https://github.com/WeblateOrg/weblate.
Create virtual env and install dependencies:
uv venv .venv
source .venv/bin/activate
uv pip install -r requirements-dev.txt
Create weblate_web/settings_local.py
which adjust your settings:
# Disable SAML login, use local
LOGIN_URL = "/admin/login/"
# You can also configure API keys and other things, see weblate_web/settings.py
Create admin:
./manage.py createsuperuser --username admin --email [email protected]
Migrate the database:
./manage.py migrate
Run the developemnt server:
./manage.py runserver