1 ;; This is a sample app.ini file. Your application will dictate the format and the
2 ;; type of sections and data that can be found in this ini file. It will also dictate
3 ;; how many ini files will be contained in your config/ directory. For the puropose
4 ;; of our application, this one file makes the most sense.
6 ;; we always have our "production" section first, because it will define ALL of the
7 ;; keys that our application is expecting to see.
10 database.adapter = "MYSQLI"
11 database.params.dbname = "florbal"
12 database.params.username = "florbal"
13 database.params.password = "florbal"
14 database.params.host = "127.0.0.1"
16 [development : production]
17 database.params.dbname = "florbal"
19 [testing : production]
20 database.params.dbname = "florbal"
24 ;; note: as you can see, we are able to use our APPLICATION_PATH constant in this ini file.
25 ;; this is important so that we can make the most self-contained, and modular application we