Plugins Directory » ChiliVideos
Author: | Tom Kersten | |
---|---|---|
Website: | https://github.com/tomkersten/chili_videos | |
Code repository: | git://github.com/tomkersten/chili_videos.git | |
Registered on: | 2011-05-11 (over 13 years ago) | |
Current version: | 0.1 | |
Compatible with: | Redmine 0.9.x, 1.0.x, 1.1.x, 1.2.x | |
User ratings: |
ChiliProject/Redmine plugin which integrates with Transload.it to offer a private "YouTube-like" setup to your project site.
Notable items to consider before installing:
- This plugin is distributed as a gem, but does ship with migrations and asset files (stylesheets, etc). Therefore, the installation procedure is not the standard process.
- The processing of "Assemblies" from the Transload.it service is handled in the background (via delayed_job), so there is an additional daemon process which you will have to monitor and/or manage with your installation.
See more info about features and things to consider before installing here
Installation notes
INSTALL:
gem install chili_videos Manual steps after gem installation
In your 'config/environment.rb', add:
config.gem 'chili_videos'
In your 'Rakefile', add:
require 'chili_videos' require 'tasks/chili_videos_tasks' ChiliVideosTasks.new
Run the installation rake task (runs migrations & installs assets)
RAILS_ENV=production rake chili_videos:install
Cycle your application server (mongrel, unicorn, etc)
Start the delayed_job daemon
RAILS_ENV=production rake chili_videos:delayed_job ACTION=start
UNINSTALL:
Stop the delayed_job daemon
RAILS_ENV=production rake chili_videos:delayed_job ACTION=stop
Run the uninstall rake task (reverts migrations & uninstalls assets)
RAILS_ENV=production rake chili_videos:uninstall
In your 'Rakefile', remove:
require 'chili_videos' require 'tasks/chili_videos_tasks' ChiliVideosTasks.new"
In your 'config/environment.rb', remove:
config.gem 'chili_videos'
Cycle your application server (mongrel, unicorn, whatevs)...
Then, uninstall the chili_videos gem:
gem uninstall chili_videos
Changelog
0.1 (2011-04-21)
Compatible with Redmine 0.9.x, 1.0.x, 1.1.x, 1.2.x.