Skip to content

Commit 5713d65

Browse files
committed
README.md update.
1 parent 36c241d commit 5713d65

File tree

1 file changed

+8
-31
lines changed

1 file changed

+8
-31
lines changed

README.md

Lines changed: 8 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
## A Double Entry Accounting Engine for Django
66

7-
Django Ledger is a powerful financial management system built on the Django Web Framework. It offers a simplified API for handling complex accounting tasks in financially driven applications.
7+
Django Ledger is a powerful financial management system built on the Django Web Framework. It offers a simplified API
8+
for handling complex accounting tasks in financially driven applications.
89

910
[FREE Get Started Guide](https://www.djangoledger.com/get-started) | [Join our Discord](https://discord.gg/c7PZcbYgrc) | [Documentation](https://django-ledger.readthedocs.io/en/latest/) | [QuickStart Notebook](https://github.com/arrobalytics/django-ledger/blob/develop/notebooks/QuickStart%20Notebook.ipynb)
1011

@@ -29,13 +30,15 @@ Django Ledger is a powerful financial management system built on the Django Web
2930
## Getting Involved
3031

3132
- **Feature Requests/Bug Reports**: Open an issue in the repository
32-
- **For software customization, advanced features and consulting services**:
33-
[Contact us](https://www.miguelsanda.com/work-with-me/) or email [email protected]
34-
- **Contribute**: See our [contribution guidelines](https://github.com/arrobalytics/django-ledger/blob/master/Contribute.md)
33+
- **For software customization, advanced features and consulting services**:
34+
[Contact us](https://www.miguelsanda.com/work-with-me/) or email [email protected]
35+
- **Contribute**: See
36+
our [contribution guidelines](https://github.com/arrobalytics/django-ledger/blob/master/Contribute.md)
3537

3638
## Who Should Contribute?
3739

3840
We're looking for contributors with:
41+
3942
- Python and Django programming skills
4043
- Finance and accounting expertise
4144
- Interest in developing a robust accounting engine API
@@ -89,6 +92,7 @@ pipenv install "django-ledger[graphql,pdf]"
8992
```
9093

9194
Alternatively, you can use:
95+
9296
```shell script
9397
pipenv install django-ledger\[graphql,pdf\]
9498
```
@@ -109,33 +113,6 @@ INSTALLED_APPS = [
109113
]
110114
```
111115

112-
113-
* Add django_ledger settings to project settings.py file.
114-
115-
```python
116-
DJANGO_LEDGER_ACCOUNT_MODEL = 'django_ledger.AccountModel'
117-
DJANGO_LEDGER_CHART_OF_ACCOUNTS_MODEL = 'django_ledger.ChartOfAccountModel'
118-
DJANGO_LEDGER_TRANSACTION_MODEL = 'django_ledger.TransactionModel'
119-
DJANGO_LEDGER_JOURNAL_ENTRY_MODEL = 'django_ledger.JournalEntryModel'
120-
DJANGO_LEDGER_LEDGER_MODEL = 'django_ledger.LedgerModel'
121-
DJANGO_LEDGER_ENTITY_MODEL = 'django_ledger.EntityModel'
122-
DJANGO_LEDGER_ENTITY_STATE_MODEL = 'django_ledger.EntityStateModel'
123-
DJANGO_LEDGER_ENTITY_UNIT_MODEL = 'django_ledger.EntityUnitModel'
124-
DJANGO_LEDGER_ESTIMATE_MODEL = 'django_ledger.EstimateModel'
125-
DJANGO_LEDGER_BILL_MODEL = 'django_ledger.BillModel'
126-
DJANGO_LEDGER_INVOICE_MODEL = 'django_ledger.InvoiceModel'
127-
DJANGO_LEDGER_PURCHASE_ORDER_MODEL = 'django_ledger.PurchaseOrderModel'
128-
DJANGO_LEDGER_CUSTOMER_MODEL = 'django_ledger.CustomerModel'
129-
DJANGO_LEDGER_VENDOR_MODEL = 'django_ledger.VendorModel'
130-
DJANGO_LEDGER_BANK_ACCOUNT_MODEL = 'django_ledger.BankAccountModel'
131-
DJANGO_LEDGER_CLOSING_ENTRY_MODEL = 'django_ledger.ClosingEntryModel'
132-
DJANGO_LEDGER_UNIT_OF_MEASURE_MODEL = 'django_ledger.UnitOfMeasureModel'
133-
DJANGO_LEDGER_ITEM_TRANSACTION_MODEL = 'django_ledger.ItemTransactionModel'
134-
DJANGO_LEDGER_ITEM_MODEL = 'django_ledger.ItemModel'
135-
DJANGO_LEDGER_STAGED_TRANSACTION_MODEL = 'django_ledger.StagedTransactionModel'
136-
DJANGO_LEDGER_IMPORT_JOB_MODEL = 'django_ledger.ImportJobModel'
137-
```
138-
139116
* Perform database migrations:
140117

141118
```shell

0 commit comments

Comments
 (0)