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 Wed Aug 26 01:01:07 -0700 2009 adding file perm changes [brad wilson]
file .gitignore Sat Apr 11 20:32:53 -0700 2009 Include environment in git. We need a better wa... [ari]
file LICENSE Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
file README Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
file README.developers Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
file RELEASE-NOTES Tue Mar 31 01:39:25 -0700 2009 Merge branch 'master' of git://github.com/bradx... [ari]
file Rakefile Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
directory app/ Thu Apr 09 03:02:58 -0700 2009 Remove rails from the package. [ari]
directory config/ Sat Apr 11 20:32:53 -0700 2009 Include environment in git. We need a better wa... [ari]
directory db/ Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
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/ Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
directory public/ Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
directory script/ Mon Apr 06 03:58:12 -0700 2009 Upgrade to Rails 2.3 [ari]
file setup.rb Mon Apr 06 05:14:54 -0700 2009 Remove all gems installed in Clocking IT. They ... [ari]
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/ Thu Apr 09 03:02:58 -0700 2009 Remove rails from the package. [ari]
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>