Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/application/configs/application.sample.ini
2013-12-10 08:18:11 +01:00

30 lines
589 B
INI

[general]
// Bootstrap
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
// Application
app.name = "Fiktivkod"
app.version = "1.0"
app.url = "fiktivkod.org"
// Defaults
defaults.lang = sv
// Database
db.adapter = mysqli
db.host = localhost
db.username = user
db.password = password
db.dbname = dbname
db.port = 3306
[production : general]
// Error settings
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
[development : production]
// Error settings
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1