From 599e35d4d997d4e5241953aeefdc407ae13aacad Mon Sep 17 00:00:00 2001 From: Miguel Sanda Date: Wed, 21 Jun 2023 14:45:48 -0400 Subject: [PATCH] Documentation Update --- docs/source/index.rst | 7 +++---- docs/source/installation.rst | 35 ----------------------------------- 2 files changed, 3 insertions(+), 39 deletions(-) delete mode 100644 docs/source/installation.rst diff --git a/docs/source/index.rst b/docs/source/index.rst index 94b49c17..83652564 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,7 +1,7 @@ .. Django Ledger documentation master file, created by - sphinx-quickstart on Mon Jan 6 19:38:59 2020. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. +sphinx-quickstart on Mon Jan 6 19:38:59 2020. +You can adapt this file completely to your liking, but it should at least +contain the root `toctree` directive. Django Ledger - The Django Book Keeping Engine. =============================================== @@ -13,7 +13,6 @@ Django Ledger - The Django Book Keeping Engine. :maxdepth: 2 :caption: Contents: - ./installation ./quickstart ./models diff --git a/docs/source/installation.rst b/docs/source/installation.rst deleted file mode 100644 index 8cc2ab0f..00000000 --- a/docs/source/installation.rst +++ /dev/null @@ -1,35 +0,0 @@ -Installation -============= - -The easiest way to install the latest Django Ledger version is to install it directly -from the repository. - ->>> pip install django-ledger - -Add **django_ledger** to your installed apps. - -.. code-block:: python - - INSTALLED_APPS = [ - ... - 'django_ledger', - ... - ] - -Include Django Ledger's URLs in your project. - -.. code-block:: python - - from django.urls import path, include - -.. code-block:: python - - urlpatterns = [ - ... - path('ledger/', include('django_ledger.urls', namespace='django_ledger')), - ... - ] - -Now run Django Ledger's migrations. - - >>> python manage.py migrate django-ledger \ No newline at end of file