From eabdd3115e24c57ad3204f055be7bc7eff9d762f Mon Sep 17 00:00:00 2001 From: Frederic Date: Thu, 25 Apr 2019 20:42:52 +0200 Subject: [PATCH] fix minor markdown issue --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d539150..4736a73 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,14 @@ Follow these steps to initialize a development environment: 1. Initialize _Django_ project + ``` django startproject PROJECT_NAME ``` 2. Add `bam` to `INSTALLED_APPS` in the project's `settings.py` 3. Append `path('', include('bam.urls')),` to the project's `urls.py` 4. Initialize database + ``` ./manage.py migrate ```