8000 Update 01-install.rst to include MariaDB · django-cms/django-cms@592a47b · GitHub
[go: up one dir, main page]

Skip to content

Commit 592a47b

Browse files
authored
Update 01-install.rst to include MariaDB
Suggesting to add a mention of MariaDB as it is mentioned at https://docs.djangoproject.com/en/4.2/ref/databases/
1 parent 650f31a commit 592a47b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/introduction/01-install.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,11 +365,13 @@ configured by default in a new Django project's :setting:`django:DATABASES`.
365365
.. note::
366366

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

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

373+
.. _mariadb: http://www.mariadb.com
374+
373375
.. _mysql: http://www.mysql.com
374376

375377
.. _postgresql: http://www.postgresql.org/
@@ -380,7 +382,7 @@ configured by default in a new Django project's :setting:`django:DATABASES`.
380382
.. code-block::
381383
382384
pip install psycopg2 # for Postgres
383-
pip install mysqlclient # for MySQL
385+
pip install mysqlclient # for MySQL or MariaDB
384386
385387
Refer to :setting:`Django's DATABASES setting documentation <django:DATABASES>` for the
386388
appropriate configuration for your chosen database backend.

0 commit comments

Comments
 (0)
0