Skip to content

Commit 0d42c7f

Browse files
authored
Merge pull request jazzband#176 from jessamynsmith/master
Updated Testing instructions
2 parents be6c683 + db16405 commit 0d42c7f

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

docs/installation.rst

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Testing
6969
Verify that everything is installed and configured properly:
7070

7171
#. Setup an isolated environment with `virtualenv`_ and activate environment::
72-
72+
7373
virtualenv --no-site-packages env
7474
. env/bin/activate
7575

@@ -81,13 +81,22 @@ Verify that everything is installed and configured properly:
8181

8282
export DJANGO_SETTINGS_MODULE='testtinymce.settings'
8383

84+
#. Create project and change into project directory
85+
86+
django-admin startproject tinymce_test
87+
cd tinymce_test
88+
8489
#. Setup test database (it will be created in current folder)::
8590

86-
django-admin syncdb
91+
python manage.py migrate
92+
93+
#. Create superuser
94+
95+
python manage.py createsuperuser
8796

8897
#. Run Django runserver command to verify results::
8998

90-
django-admin runserver
99+
python manage.py runserver
91100

92101
#. Open this address in a browser::
93102

0 commit comments

Comments
 (0)