This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/config/config.example.ini

40 lines
871 B
INI
Raw Normal View History

2015-05-11 22:20:19 +00:00
; Example Sakura configuration
; Rename this file to config.ini after you're done editing.
; Database configuration
[database]
; SQL Driver that should be used.
; This has to relate to a PHP file in the libraries/DBWrapper folder
2015-05-11 22:20:19 +00:00
; but must EXCLUDE the .php file extension. (I recommend sticking with the bundled mysql library)
driver = mysql
; Username used to authenticate with the SQL server
username = sakura
; Password for the same purpose
2015-05-29 19:27:45 +00:00
password = "password"
2015-05-11 22:20:19 +00:00
; Table prefix used.
prefix = sakura_
2016-02-20 11:20:58 +00:00
[dsn]
host=localhost
port=3306
dbname=sakura
; Data files relative to the root directory
2015-05-11 22:20:19 +00:00
[data]
; JSON file containing ISO 3166 country codes
iso3166 = config/iso3166.json
2015-12-04 14:19:10 +00:00
; Development mode settings
[dev]
2015-12-27 04:37:57 +00:00
; Show detailed error logs in browser
show_errors = true
; Show a small version of the changelog loaded from sakura.flash.moe
show_changelog = true