8000 docs: Update 01-install.rst to include MariaDB by robertsilen · Pull Request #7922 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

docs: Update 01-install.rst to include MariaDB #7922

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/introduction/01-install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -365,11 +365,13 @@ configured by default in a new Django project 8102 9;s :setting:`django:DATABASES`.
.. note::

For deployment, you'll need to use a :doc:`production-ready database with Django
<django:ref/databases>`. We recommend using PostgreSQL_ or MySQL_.
<django:ref/databases>`. We recommend using PostgreSQL_, MySQL_ or MariaDB_.

Installing and maintaining database systems is far beyond the scope of this
documentation, but is very well documented on the systems' respective websites.

.. _mariadb: http://www.mariadb.com

.. _mysql: http://www.mysql.com

.. _postgresql: http://www.postgresql.org/
Expand All @@ -380,7 +382,7 @@ configured by default in a new Django project's :setting:`django:DATABASES`.
.. code-block::

pip install psycopg2 # for Postgres
pip install mysqlclient # for MySQL
pip install mysqlclient # for MySQL or MariaDB

Refer to :setting:`Django's DATABASES setting documentation <django:DATABASES>` for the
appropriate configuration for your chosen database backend.
Expand Down
0