preston / asset_tracker

A simple web-based asset tracking system for small businesses written in Ruby on Rails (RoR). New equipment is assigned to a specific location and person who is notified of the responsibility. You may optionally add serial numbers and an arbitrary amount of notes to each asset. Configured to run on top of PostgreSQL and sendmail by default, though both are reconfigurable.

This URL has Read+Write access

Preston Lee (author)
Tue Sep 01 14:13:44 -0700 2009
commit  7ffc3ae6adc95b3ea1a24a08ff02e3f400bcf4ac
tree    1514022ff9c1420b901e911a4241ff72c215e6bd
parent  f9f04f178c5380da6133727c4d40372ff4330f8d
README
== Getting Started

1. Create a config/initializers/email.rb with the following...

ActionMailer::Base.smtp_settings = {
  :address => "smtp.gmail.com",
  :port => 587,
  :authentication => :plain,
  :enable_starttls_auto => true,
  :user_name => "noreply@gmail_or_your_google_domain.com",
  :password => "chucknorris"
}

2. rake db:create
3. rake db:fixtures:load