TracdTracd is a lightweight stand-alone Trac server. In most cases it's easier to setup and runs faster than trac.cgi. Note: tracd is still experimental. Pros
Cons
Usage examplesA single project on port 8080. (http://localhost:8080/) $ tracd -p 8080 /path/to/project With more than one project. (http://localhost:8080/project1/ and http://localhost:8080/project2/) $ tracd -p 8080 /path/to/project1 /path/to/project2 With htdigest authentication. The file /tmp/users.htdigest contain user accounts for project1 with the realm "mycompany.com". $ tracd -p 8080 --auth project1,/tmp/users.htdigest,mycompany.com /path/to/project1 See also: TracGuide, TracInstall, TracModPython |