fastr applications are structured to make your life easy. The structure is very similar to Rails.
The config directory contains files for configuring your fastr application.
Your controllers should be placed in this directory. See Controllers for more information.
Your models should be placed in this directory. Currently there is no persistence in fastr. Use this folder if you want to include a custom persistence module.
Your views should be placed in this directory. When a controller renders a template, the template is searched for in this directory. See Views for more information.
fastr will load any plugins contained in this directory. See Plugins for more information.
Before routing, fastr will try to serve the file if it exists in this directory. See static files for more information.
Put your library code in this directory.
Put your test files in this directory.