Skip to content

Development

sztamas edited this page Jan 25, 2016 · 1 revision

Development

It is recommended that you use virtualenv for development.

http://www.virtualenv.org/en/latest/index.html

After you installed virtualenv create a virtualenv for the project:

$ cd django-useraudit
$ virtualenv virt_useraudit

Activate the virtualenv:

$ source virt_useraudit/bin/activate

Install the requirements:

$ pip install -r requirements.txt

Now you are setup for development. There is a script that runs all the unit tests in the project:

$ ./runtests.sh

Have Fun!

Clone this wiki locally