client
|
Last change
on this file since f5bebab was
f5bebab,
checked in by Alex Dehnert <adehnert@…>, 12 years ago
|
|
Tweaks from doing a new install
|
-
Property mode set to
100644
|
|
File size:
1.1 KB
|
| Rev | Line | |
|---|
| [a17645f] | 1 | = Installing Remit = |
|---|
| 2 | |
|---|
| 3 | 1. At heart, Remit is just another Django application. Do whatever you normally need to do to install a Django application. |
|---|
| 4 | 2. Create local_settings.py containing: |
|---|
| 5 | * SECRET_KEY |
|---|
| 6 | * ADMINS |
|---|
| 7 | * Database configuration |
|---|
| 8 | * SERVER_EMAIL |
|---|
| [f5bebab] | 9 | * SITE_URL_BASE -- for dev installs, probably "http://localhost:8006" or similar |
|---|
| 10 | * For dev installs, you'll probably want DEBUG=True |
|---|
| [a17645f] | 11 | * Any other settings you want |
|---|
| 12 | 3. Create local_settings_after.py (possibly empty) |
|---|
| [f5bebab] | 13 | 4. Run "./manage.py syncdb && ./manage.py migrate" to set up the database |
|---|
| [a17645f] | 14 | 5. Run "./util/setup.py" to install the basic accounts (Assets, Expenses, Income, plus some common GLs) |
|---|
| 15 | 6. 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) |
|---|
| 18 | 7. Use the admin interface to set up appropriate BudgetTerm(s) |
|---|
| [501e0d7] | 19 | 8. Make sure that the remit/media/ directory gets served to the web as media |
|---|
Note: See
TracBrowser
for help on using the repository browser.