Update sample app's name

This commit is contained in:
Rodolfo Carvalho 2015-06-01 10:43:14 +02:00
parent d9ed34f5f2
commit afa5a3f090
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -30,7 +30,7 @@
<ol>
<li>Django project created with <code>python manage.py startproject project .</code></li>
<li>Appropriate database configuration</li>
<li>Sample Django app created with <code>python manage.py startapp openshift</code></li>
<li>Sample Django app created with <code>python manage.py startapp welcome</code></li>
</ol>
<p>
Now it is time to add your own code. Follow along the <a href="https://docs.djangoproject.com/en/1.8/intro/tutorial01/">Django tutorial</a>