-
Notifications
You must be signed in to change notification settings - Fork 7
Application
Alexander Popov edited this page Feb 9, 2021
·
1 revision
Application is a core of application (project).
It should be inherited from Flame::Application
class:
# application.rb
module MyProject
class Application < Flame::Application
end
end
It contains application configuration (config
method, also available in controllers,
check Config wiki page), mounting of controllers (check Mounting wiki page),
and everything else you want to.