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

35 lines
617 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 according to https://laravel.com/docs/5.2/database#introduction
2015-05-11 22:20:19 +00:00
[database]
driver = mysql
host = localhost
port = 3306
2015-05-11 22:20:19 +00:00
username = sakura
2015-05-29 19:27:45 +00:00
password = "password"
2015-05-11 22:20:19 +00:00
prefix = sakura_
database = sakura-development
charset = utf8
2015-05-11 22:20:19 +00:00
collation = utf8_unicode_ci
2016-02-20 11:20:58 +00:00
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
2016-03-25 01:31:57 +00:00
; Host for the mahou serve command
host = localhost:8000