diff --git a/README.md b/README.md index 9aa7acb..93ca63e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This is a minimal Django 1.8 project. It was created with these steps: 3. `pip freeze > requirements.txt` 4. `django-admin startproject project .` 3. Manually update `project/settings.py` to configure `SECRET_KEY`, `DATABASE` and `STATIC_ROOT` entries. -4. `./manage.py startapp openshift`, to create the welcome page's app +4. `./manage.py startapp welcome`, to create the welcome page's app ## Local development diff --git a/welcome/templates/welcome/index.html b/welcome/templates/welcome/index.html index a26aa92..e3dff8b 100644 --- a/welcome/templates/welcome/index.html +++ b/welcome/templates/welcome/index.html @@ -30,7 +30,7 @@
  1. Django project created with python manage.py startproject project .
  2. Appropriate database configuration
  3. -
  4. Sample Django app created with python manage.py startapp openshift
  5. +
  6. Sample Django app created with python manage.py startapp welcome

Now it is time to add your own code. Follow along the Django tutorial