mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 12:41:49 +02:00
budget is now replaced with ihatemoney
This commit is contained in:
parent
2911ec7914
commit
dfadc13801
3 changed files with 5 additions and 5 deletions
|
@ -1,3 +1,3 @@
|
|||
include *.rst
|
||||
recursive-include budget *.rst *.py *.yaml *.po *.mo *.html *.css *.js *.eot *.svg *.woff *.txt *.png *.ini *.cfg
|
||||
recursive-include ihatemoney *.rst *.py *.yaml *.po *.mo *.html *.css *.js *.eot *.svg *.woff *.txt *.png *.ini *.cfg
|
||||
include LICENSE CONTRIBUTORS CHANGELOG.rst
|
||||
|
|
|
@ -29,7 +29,7 @@ dependencies yourself (that's what the `make serve` does). That would be::
|
|||
|
||||
And then run the application::
|
||||
|
||||
cd budget
|
||||
cd ihatemoney
|
||||
python run.py
|
||||
|
||||
In any case, you can point your browser at `http://localhost:5000 <http://localhost:5000>`_.
|
||||
|
@ -86,7 +86,7 @@ properly.
|
|||
| ACTIVATE_DEMO_PROJECT | ``True`` | If set to `True`, a demo project will be available on the frontpage. |
|
||||
+----------------------------+---------------------------+----------------------------------------------------------------------------------------+
|
||||
| | ``""`` | If not empty, the specified password must be entered to create new projects. |
|
||||
| ADMIN_PASSWORD | | To generate the proper password HASH, use ``./budget/manage.py generate_password_hash``|
|
||||
| ADMIN_PASSWORD | | To generate the proper password HASH, use ``ihatemoney generate_password_hash`` |
|
||||
| | | and copy its output into the value of *ADMIN_PASSWORD*. |
|
||||
+----------------------------+---------------------------+----------------------------------------------------------------------------------------+
|
||||
|
||||
|
@ -95,7 +95,7 @@ properly.
|
|||
In a production environment
|
||||
---------------------------
|
||||
|
||||
Make a copy of ``budget/default_settings.py`` and name it ``ihatemoney.cfg``.
|
||||
Make a copy of ``ihatemoney/default_settings.py`` and name it ``ihatemoney.cfg``.
|
||||
Then adjust the settings to your needs and move this file to
|
||||
``/etc/ihatemoney/ihatemoney.cfg``.
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ def validate_configuration(app):
|
|||
warnings.warn(
|
||||
"The way Ihatemoney stores your ADMIN_PASSWORD has changed. You are using an unhashed"
|
||||
+ " ADMIN_PASSWORD, which is not supported anymore and won't let you access your admin"
|
||||
+ " endpoints. Please use the command './budget/manage.py generate_password_hash'"
|
||||
+ " endpoints. Please use the command 'ihatemoney generate_password_hash'"
|
||||
+ " to generate a proper password HASH and copy the output to the value of"
|
||||
+ " ADMIN_PASSWORD in your settings file.",
|
||||
UserWarning
|
||||
|
|
Loading…
Reference in a new issue