The project configuration files can be found at the configs
folder.
This is the main configuration file, and it's required.
You may find some structure just like this:
// generated by Magrathea at [...] [general] use_environment = "default" time_zone = "America/Sao_Paulo" [default] db_host = "127.0.0.1" db_name = "teste" db_user = "test_user" db_pass = "test_pass" site_path = "/Users/Sites/mywebsite/app" magrathea_path = "/Users/Sites/mywebsite/Magrathea" compress_js = "false" compress_css = "false" time_zone = "America/Sao_Paulo" testThis = "test_ok" [another_config] db_host = "127.0.0.2" db_name = "production" db_user = "production_user" db_pass = "production_pass" site_path = "/etc/mywebsite/app" magrathea_path = "/etc/mywebsite/Magrathea" compress_js = "true" compress_css = "true" time_zone = "America/Sao_Paulo" testThis = "test_not_ok"
general
section is an internal control of the Magrathea config file.use_environment
option inside the general section.
magrathea_objects.conf
will save the data for your objects and relations. Some of it structure may be copied if you are reusing some parts of the system, but you souldn't have to touch it. Really.