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.

Home Page:http://prestonlee.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

== 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



About

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.

http://prestonlee.com

License:Apache License 2.0


Languages

Language:Ruby 99.6%Language:JavaScript 0.4%