Welcome to Case Conductor

Case Conductor is a test case manager.

Quickstart

Case Conductor requires Python 2.6 or 2.7 and MySQL 5+.

(These quickstart instructions assume that you have virtualenv and virtualenvwrapper; if you’d rather just install everything globally, skip step 2; you may have to prepend sudo to step 3 in that case.)

  1. git clone --recursive git://github.com/mozilla/caseconductor
  2. mkvirtualenv caseconductor
  3. bin/install-reqs
  4. echo "CREATE DATABASE caseconductor CHARACTER SET utf8" | mysql
  5. ./manage.py syncdb --migrate
  6. ./manage.py create_default_roles
  7. ./manage.py runserver
  8. Visit http://localhost:8000 in your browser.

Congratulations! If that all worked, you have a functioning instance of Case Conductor for local testing, experimentation, and development.

See the full Installation documentation for details and troubleshooting of the above steps.

Please read the Deployment documentation for important security and other considerations before deploying a public instance of Case Conductor.

Indices and tables

Project Versions

Table Of Contents

Next topic

Installation

This Page