source: INSTALL @ ff623c3

client
Last change on this file since ff623c3 was f5bebab, checked in by Alex Dehnert <adehnert@…>, 11 years ago

Tweaks from doing a new install

  • Property mode set to 100644
File size: 1.1 KB
Line 
1= Installing Remit =
2
31.  At heart, Remit is just another Django application. Do whatever you normally need to do to install a Django application.
42.  Create local_settings.py containing:
5    * SECRET_KEY
6    * ADMINS
7    * Database configuration
8    * SERVER_EMAIL
9    * SITE_URL_BASE -- for dev installs, probably "http://localhost:8006" or similar
10    * For dev installs, you'll probably want DEBUG=True
11    * Any other settings you want
123.  Create local_settings_after.py (possibly empty)
134.  Run "./manage.py syncdb && ./manage.py migrate" to set up the database
145.  Run "./util/setup.py" to install the basic accounts (Assets, Expenses, Income, plus some common GLs)
156.  Run "./util/add_accounts" to add new accounts
16    * First argument: path to the base account --- for example, "Accounts.Assets"
17    * Standard input: accounts to add, separated by newline (to specify account numbers, add a tab followed by the account number)
187.  Use the admin interface to set up appropriate BudgetTerm(s)
198.  Make sure that the remit/media/ directory gets served to the web as media
Note: See TracBrowser for help on using the repository browser.