added missing fields in the sample config

master
Thierry Degeling 2015-04-20 12:39:41 +02:00
parent a54e332b44
commit 978cae6ff9
1 changed files with 13 additions and 1 deletions

View File

@ -2,13 +2,25 @@
"debug" : false,
"google" : {
"api_key" : "GOOGLE_API_KEY_GOES_HERE",
"calendar_id" : "GOOGLE_CALENDAR_ID_GOES_HERE"
"calendar_id" : "GOOGLE_CALENDAR_ID_GOES_HERE",
"ical" : "PUBLIC_ICS_EXPORT_GOES_HERE"
},
"spaceAPI" : "URL_TO_SPACE_API_GOES_HERE",
"cache" : {
"calendar" : {
"json" : "cache/calendar.json",
"ical" : "cache/calendar.ical"
},
"attendance" : {
"json" : "cache/attendance.json"
}
},
"db.options" : {
"driver" : "pdo_mysql",
"charset" : "utf8",
"host" : "localhost",
"dbname" : "ASDF",
"user" : "ASDF",
"password" : "ASDF"
}
}