mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-01 06:38:17 +08:00
51 lines
1.2 KiB
ReStructuredText
51 lines
1.2 KiB
ReStructuredText
Installing on SUSE and openSUSE
|
|
===============================
|
|
|
|
.. include:: steps/hw.rst
|
|
|
|
.. include:: steps/install-system-devel.rst
|
|
|
|
.. code-block:: sh
|
|
|
|
zypper install \
|
|
libxslt-devel libxml2-devel freetype-devel libjpeg-devel zlib-devel \
|
|
libyaml-devel libffi-devel cairo-devel pango-devel librsvg-devel \
|
|
gobject-introspection-devel libacl-devel liblz4-devel libzstd-devel libxxhash-devel \
|
|
python3-devel git
|
|
|
|
.. include:: steps/install-system-optional.rst
|
|
|
|
.. code-block:: sh
|
|
|
|
zypper install libldap2-devel libsasl2-devel
|
|
zypper install libxmlsec1-devel
|
|
|
|
.. include:: steps/install-system-server.rst
|
|
|
|
.. code-block:: sh
|
|
|
|
# Web server option 1: NGINX and uWSGI
|
|
zypper install nginx uwsgi uwsgi-plugin-python3
|
|
|
|
# Web server option 2: Apache with ``mod_wsgi``
|
|
zypper install apache2 apache2-mod_wsgi
|
|
|
|
# Caching backend: Valkey
|
|
zypper install valkey-server
|
|
|
|
# Database server: PostgreSQL
|
|
zypper install postgresql postgresql-contrib
|
|
|
|
# SMTP server
|
|
zypper install postfix
|
|
|
|
# Gettext for the msgmerge add-on
|
|
zypper install gettext
|
|
|
|
.. include:: steps/install-uv.rst
|
|
|
|
.. include:: steps/install-python.rst
|
|
|
|
.. include:: steps/install-configure.rst
|
|
|
|
.. include:: steps/install-after.rst
|