Skip to content

WeblateOrg/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Weblate

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/>.

Website Coverage Status Translation status License

Weblate

Find Weblate at https://github.com/WeblateOrg/weblate.

Running locally

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