mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
Fix default SQLALCHEMY_DATABASE_URI value in doc (#267)
Reality-sync with default_settings.py Not fixing the whole table layout because - my text editor doesn't do it ; - I'm too lazy ; - #251 is IMHO the real way to this issue :)
This commit is contained in:
parent
7a918c9349
commit
40dda53607
1 changed files with 6 additions and 6 deletions
|
@ -92,12 +92,12 @@ properly.
|
|||
|
||||
.. warning:: You **must** customize the ``SECRET_KEY`` on a production installation.
|
||||
|
||||
+-------------------------------+---------------------------+----------------------------------------------------------------------------------------+
|
||||
| Setting name | Default | What does it do? |
|
||||
+===============================+===========================+========================================================================================+
|
||||
| SQLALCHEMY_DATABASE_URI | ``sqlite:///budget.db`` | Specifies the type of backend to use and its location. More information |
|
||||
| | | on the format used can be found on `the SQLAlchemy documentation |
|
||||
| | | <http://docs.sqlalchemy.org/en/latest/core/engines.html#database-urls>`_. |
|
||||
+-------------------------------+---------------------------------+----------------------------------------------------------------------------------+
|
||||
| Setting name | Default | What does it do? |
|
||||
+===============================+=================================+==================================================================================+
|
||||
| SQLALCHEMY_DATABASE_URI | ``sqlite:///tmp/ihatemoney.db`` | Specifies the type of backend to use and its location. More information |
|
||||
| | | on the format used can be found on `the SQLAlchemy documentation |
|
||||
| | | <http://docs.sqlalchemy.org/en/latest/core/engines.html#database-urls>`_. |
|
||||
+-------------------------------+---------------------------+----------------------------------------------------------------------------------------+
|
||||
| SECRET_KEY | ``tralala`` | The secret key used to encrypt the cookies. **This needs to be changed**. |
|
||||
+-------------------------------+---------------------------+----------------------------------------------------------------------------------------+
|
||||
|
|
Loading…
Reference in a new issue