If you want to install requirements, create a local db and load some dummy data, and run tests all at once just run:
make init
make install
To update/recreate the database
make recreate-db
To load some dummy projects and tickets
make load-dev-data
Create the media upload dir (for user files)
mkdir htdocs/media
# make the dir world writeable
# or make apache the owner of the dir
chown apache htdocs/media || chmod 1777 htdocs/media
Run the server
make
To test the site, use either
make test
Or
make coverage
Then go to http://<host|ip>:port/htmlcov/index.html for the report