diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-10-13 21:27:56 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-10-13 21:27:56 +0200 |
| commit | 97132ce88aac5c45e70217b7bff38331ae76bd5f (patch) | |
| tree | f6cd7884f66a3c734c2121a336b99956517261f4 /README.rst | |
| parent | b7ba8e43c4545d352f197237f349ab77e6a15544 (diff) | |
| download | ihatemoney-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.rst | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 ================= |
