Changes between Version 7 and Version 8 of DjangoAndNginx
- Timestamp:
- Jan 17, 2012, 10:28:58 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoAndNginx
v7 v8 25 25 26 26 Let's start a sample project just to make things easy: 27 (Note: for some reason, the PYTHONPATH and PATH variables, although they included the django bin directory, still couldn't find django-admin.py, so I included the full path)27 (Note: django-admin.py *should be* in your path and executable after a proper install, if this is not the case you may need to fix your installation or environment) 28 28 {{{ 29 29 cd / 30 30 mkdir projects 31 31 cd projects/ 32 python /usr/lib/python2.5/site-packages/django/bin/django-admin.py startproject sample_project32 django-admin.py startproject sample_project 33 33 }}} 34 34