From dfadc13801b58bd34fc2d51548f2da3a5807c919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Thu, 6 Jul 2017 23:31:07 +0200 Subject: [PATCH] budget is now replaced with ihatemoney --- MANIFEST.in | 2 +- docs/installation.rst | 6 +++--- ihatemoney/run.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index ba99e2a7..9ba34bae 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/docs/installation.rst b/docs/installation.rst index 3cd143d0..df0ddeac 100644 --- a/docs/installation.rst +++ b/docs/installation.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 `_. @@ -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``. diff --git a/ihatemoney/run.py b/ihatemoney/run.py index d9c6dbdd..30570646 100644 --- a/ihatemoney/run.py +++ b/ihatemoney/run.py @@ -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