File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ Testing
69
69
Verify that everything is installed and configured properly:
70
70
71
71
#. Setup an isolated environment with `virtualenv `_ and activate environment::
72
-
72
+
73
73
virtualenv --no-site-packages env
74
74
. env/bin/activate
75
75
@@ -81,13 +81,22 @@ Verify that everything is installed and configured properly:
81
81
82
82
export DJANGO_SETTINGS_MODULE='testtinymce.settings'
83
83
84
+ #. Create project and change into project directory
85
+
86
+ django-admin startproject tinymce_test
87
+ cd tinymce_test
88
+
84
89
#. Setup test database (it will be created in current folder)::
85
90
86
- django-admin syncdb
91
+ python manage.py migrate
92
+
93
+ #. Create superuser
94
+
95
+ python manage.py createsuperuser
87
96
88
97
#. Run Django runserver command to verify results::
89
98
90
- django-admin runserver
99
+ python manage.py runserver
91
100
92
101
#. Open this address in a browser::
93
102
You can’t perform that action at this time.
0 commit comments