aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-10-13 21:27:56 +0200
committerAlexis Metaireau <alexis@notmyidea.org>2011-10-13 21:27:56 +0200
commit97132ce88aac5c45e70217b7bff38331ae76bd5f (patch)
treef6cd7884f66a3c734c2121a336b99956517261f4 /README.rst
parentb7ba8e43c4545d352f197237f349ab77e6a15544 (diff)
downloadihatemoney-mirror-97132ce88aac5c45e70217b7bff38331ae76bd5f.zip
ihatemoney-mirror-97132ce88aac5c45e70217b7bff38331ae76bd5f.tar.gz
ihatemoney-mirror-97132ce88aac5c45e70217b7bff38331ae76bd5f.tar.bz2
Fix some problems related to postgresql and models
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst12
1 files changed, 11 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 9b72a0c..6674096 100644
--- a/README.rst
+++ b/README.rst
@@ -12,10 +12,17 @@ To make it run, you just have to do something like::
$ virtualenv venv
$ source venv/bin/activate
- $ pip install -r requirements.txt
+ $ pip install -r budget/requirements.txt
$ cd budget
$ python run.py
+It is also better to actually turn the debugging mode on when you're
+developing. You can create a `settings.py` file in the `budget` directory, with
+the following content::
+
+ DEBUG = True
+ SQLACHEMY_ECHO = DEBUG
+
Deploy it
=========
@@ -33,6 +40,9 @@ To deploy it, I'm using gunicorn and supervisord::
Don't forget to set the right permission for your files !
+Also, create a `settings.py` file with the appropriate values if you need to
+use a different database for instance.
+
How to contribute
=================