redonate/config.json.example

49 lines
947 B
Plaintext
Raw Normal View History

2013-02-14 22:53:26 +01:00
{
"database": {
"driver": "mysql",
"hostname": "localhost",
"username": "root",
"password": "",
"database": "redonate"
},
"locale": {
"path": "locales",
"extension": "lng",
"default_locale": "english",
"default_timezone": "Europe/Amsterdam"
},
"memcache": {
"enabled": true,
"compressed": true,
"hostname": "localhost",
"port": 11211
},
"class_map": {
2013-02-16 00:12:09 +01:00
"user": "User",
2013-03-02 05:30:11 +01:00
"campaign": "Campaign",
"subscription": "Subscription",
"paymentrequest": "PaymentRequest",
"exchangerate": "ExchangeRate",
"changerequest": "ChangeRequest",
"paymentmethod": "PaymentMethod",
"logentry": "LogEntry",
"statisticsentry": "StatisticsEntry"
2013-02-14 22:53:26 +01:00
},
"components": [
"router",
"errorhandler"
2013-03-02 05:30:11 +01:00
],
"openexchangerates": {
"app_id": ""
},
"smtp": {
"from": "admin@redonate.net",
"host": "localhost",
"port": 25,
"username": "root",
"password": ""
},
"debugmode": false,
"salt": "abcdef"
2013-02-14 22:53:26 +01:00
}