704b55a500
It has fileupload, discussions, version control, use case history, build and release management. It supports assignment of requirements & use cases to releases and filtering over all fields. WWW: http://sourceforge.net/projects/truc/ PR: ports/110171 Submitted by: Jan Siml <jsi at jules.de>
33 lines
811 B
Text
33 lines
811 B
Text
|
|
%%PKGNAME%% has been installed into:
|
|
|
|
%%PREFIX%%/www/truc
|
|
|
|
If you use MySQL as your database go to the directory
|
|
%%PREFIX%%/www/truc and do the following to create a
|
|
demo database:
|
|
|
|
mysql -u [username] -p [db_name] < database.sql
|
|
|
|
To make truc available through your web site, I suggest
|
|
that you add something like the following to httpd.conf:
|
|
|
|
Alias /truc/ "%%PREFIX%%/www/truc"
|
|
|
|
<Directory "%%PREFIX%%/www/truc/">
|
|
Options none
|
|
AllowOverride Limit
|
|
|
|
Order Deny,Allow
|
|
Deny from all
|
|
Allow from 127.0.0.1 .example.com
|
|
|
|
<IfModule dir_module>
|
|
DirectoryIndex index.php
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
Point your browser to http://localhost/truc/, follow the
|
|
instructions to create a config file and save it into
|
|
truc's root directory.
|
|
|