ruby on rails webmail client
 
 
 
 
Go to file
Wojciech Todryk b63cc2bd14 deps update 2013-02-12 20:06:43 +01:00
app migrate script fo jquery 2013-02-07 19:48:25 +01:00
arts rails 3.2.2 added tweeter bootstrap 2012-03-10 18:08:39 +01:00
config docs updated 2013-02-02 15:10:17 +01:00
db devel 2012-03-30 19:31:23 +02:00
doc dev cont 2012-03-24 13:23:34 +01:00
lib fixes 2012-06-18 21:34:30 +02:00
log dev cont 2012-03-24 13:23:34 +01:00
public favicon size 2013-02-02 15:04:27 +01:00
script works but need some cleanup 2011-06-24 23:48:08 +02:00
test dev cont 2012-03-24 13:23:34 +01:00
vendor dev cont 2012-03-24 13:23:34 +01:00
.gitignore devel 2012-03-30 19:31:23 +02:00
AUTHORS.markdown fixes 2012-06-18 21:34:30 +02:00
CHANGES.markdown docs updated 2013-02-02 15:10:17 +01:00
Gemfile deps update 2013-02-12 20:06:43 +01:00
Gemfile.lock deps update 2013-02-12 20:06:43 +01:00
README.markdown Update README.markdown 2012-04-27 23:44:03 +03:00
Rakefile dev cont 2012-03-24 13:23:34 +01:00
TODO.markdown info update 2012-04-27 22:39:08 +02:00
UNLICENSE.markdown fixes 2012-06-18 21:34:30 +02:00
config.ru dev cont 2012-03-24 13:23:34 +01:00

README.markdown

Dependency Status

Introduction

MailR is a IMAP mail client based on Ruby on Rails platform.

NOTE All path and filenames are based on Rails.root directory.

Requirements

In Rails 3 and above all dependencies should be defined in file Gemfile. All needed gems can be installed using bundler.

Installation procedure

  • Checkout the source code.
  • Install all dependiences. Check if proper gems (sqlite3/mysql/postgresql) are defined in Gemfile and installed. Use bundler for that:
bundle install
  • Check config/settings.yml for proper values. (see config/settings.yml.example).
  • Prepare config/database.yml file (see config/database.yml.example).
  • Migrate database (rake db:migrate)
  • Start rails server if applicable
  • Point your browser to application URL: For local access: http://localhost:3000 For remote access: http://some_url/mailr
  • Using browser do basic setup. If You make a mistake delete all data from DB using rake task:
rake db:clear_data
  • Use it.

Specific configuration

None