public
Description: Project Management, Collaboration and Time Tracking. Some additional features are implemented here compared to the original source.
Homepage: http://ari.github.com/clockingit/
Clone URL: git://github.com/ari/clockingit.git
Click here to lend your support to: clockingit and make a donation at www.pledgie.com !
name age message
file .boring Sat Jul 28 05:27:12 -0700 2007 [ClockingIT @ Collapse/Expand project list on O... [Fudge]
file .gitignore Loading commit data...
file LICENSE
file README
file README.developers
file RELEASE-NOTES Tue Mar 31 01:39:25 -0700 2009 Merge branch 'master' of git://github.com/bradx... [ari]
file Rakefile
directory app/
directory config/
directory db/
directory doc/ Sat Apr 04 02:54:29 -0700 2009 Update documentation. [ari]
directory dump/ Mon Sep 22 00:59:51 -0700 2008 Don't export news items and cached reports [Erlend Simonsen]
directory index/ Mon Jun 16 10:42:56 -0700 2008 Make sure ferret index directory is created [Fudge]
directory lang/ Sat Apr 04 06:04:02 -0700 2009 Updated language files [Fudge]
directory lib/
directory public/
directory script/
file setup.rb
directory test/ Thu Apr 02 20:43:44 -0700 2009 merged in ldap attributes [bradx3]
directory tmp/ Mon Jun 16 10:42:37 -0700 2008 Make sure some tmp directories are created [Fudge]
directory vendor/
README
== Welcome to ClockingIT

ClockingIT is relased under the terms of the MIT License, see LICENSE for more information.

==========================
== Installing dependencies
==========================

== OSX

1. Install macports (http://www.macports.com). This will require that you have developer tools installed so you can 
compile code.

2. Install Ruby gems (this will also install Ruby automatically if it isn't already installed)
   # sudo port install rb-rubygems

3. Install ImageMagick
   # sudo port install ImageMagick
   
4. Install mysql5. This is needed even if your database is on another server since the libraries are needed for the 
mysql connector.
   # sudo port install mysql5

5. Install mysql ruby driver (this is the natively compiled driver which is faster than the old Ruby one)
   # sudo gem install mysql -- --with-mysql-config=/opt/local/bin/mysql_config5
   

== Linux (Debian or similar)

1. Install various dependencies
   # sudo apt-get install libmagick9-dev imagemagick ruby1.8 ruby1.8-dev rubygems ri rdoc rake


== FreeBSD

1. Install Ruby gems
   # portinstall 


==========================
== Installing gems
==========================

# gem install rake



==========================
== Setup
==========================

1. Change directory into the top of the Clocking IT installation
   # ruby ./setup.rb


== Support

* mailto:admin@clockingit.com
* http://wiki.clockingit.com/wiki:source
* http://forum.clockingit.com/

== Example for Apache conf

  <VirtualHost *:80>
    ServerName *.clockingit.com
    DocumentRoot /path/application/public/
    ErrorLog /path/application/log/server.log

    <Directory /path/application/public/>
      Options ExecCGI FollowSymLinks
      AllowOverride all
      Allow from all
      Order allow,deny
    </Directory>
  </VirtualHost>