From 89657b66c50076f17c751c70992a9dbcd5fd000e Mon Sep 17 00:00:00 2001 From: Frederic Date: Sat, 4 May 2019 22:49:30 +0200 Subject: [PATCH] remove obsolete info about non-packaged project --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6725031..c944e34 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,10 @@ ## Installation Currently, this repository does only contain a plain _Django_ app without a -project. The app is not (yet) packaged. Therfore, the following steps are -necessary to initialize a development environment: +project. The following steps are necessary to initialize a development +environment: - 1. Initialize _Django_ project: + 1. Initialize a _Django_ project: ``` django-admin startproject PROJECT_NAME @@ -18,8 +18,10 @@ django-admin startproject PROJECT_NAME folder of this repository, e.g.: ``` -ln -sr bam PROJECT_DIRECTORY/bam +ln -sr bam PROJECT_NAME/bam ``` + Alternatively, if you're using a virtual environment, you can install _bam_ + by calling `pip install -e .` from within this repo's base directory. 4. Add `bam.apps.BamConfig` to `INSTALLED_APPS` in the project's `settings.py`.