File diff 827c719a42ed → 75ffbf8c8b18
docs/development.rst
Show inline comments
 
@@ -70,20 +70,20 @@ Development/test Django project
 
out-of-the-box once database has been initialised.
 

	
 
Once the development environment has been set-up, you can set-up its
 
database with::
 

	
 
  workon conntrackt
 
  cd projtest/
 
  cd testproject/
 
  ./manage.py syncdb
 
  ./manage.py migrate
 

	
 
Once the database has been set-up, run the development server with::
 

	
 
  workon conntrackt
 
  cd projtest/
 
  cd testproject/
 
  ./manage.py runserver
 

	
 
To access the application via started development server, simply point
 
your browser to http://localhost:8000/conntrackt/ .
 

	
 

	
 
@@ -93,13 +93,13 @@ Running tests
 
The application is well covered with various (primarily unit) tests,
 
and the tests can be easily run via the supplied test/development
 
projects. Once the development environment has been set-up, tests can
 
be easily run with::
 

	
 
  workon conntrackt
 
  cd ~/projects/conntrackt/projtest/
 
  cd ~/projects/conntrackt/testproject/
 
  ./manage.py test conntrackt
 

	
 

	
 
Keeping installation and development requirements up-to-date
 
------------------------------------------------------------