helpyio / helpy

Helpy is a modern, open source helpdesk customer support application. Features include knowledgebase, community discussions and support tickets integrated with email.
http://helpy.io/?source=ghh
MIT License
2.38k stars 497 forks source link

a couple of changes needed for local install #1987

Open kaymo4 opened 3 years ago

kaymo4 commented 3 years ago

I hope this is useful for others, I have made 2 changes

1) gemfile: Unknown ruby interpreter version (do not know how to handle): >=2.2,<3.0. changed this: ruby '>= 2.2', '< 3.0' with this: ruby '2.5.1'

2) config/application.rb: rake fails

Bundler.require(*Rails.groups) fails

Bundler.require

add this otherwise rake fails

require 'rack/cors'

Thanks again for a great app!