From d4f07bd674aa92dde82761d0a89b001c14fac5b8 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sat, 18 May 2013 02:33:53 +0200 Subject: [PATCH] Add sample config --- config.json.example | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 config.json.example diff --git a/config.json.example b/config.json.example new file mode 100644 index 0000000..4bf9653 --- /dev/null +++ b/config.json.example @@ -0,0 +1,44 @@ +{ + "database": { + "driver": "mysql", + "hostname": "localhost", + "username": "root", + "password": "", + "database": "box" + }, + "locale": { + "path": "locales", + "extension": "lng", + "default_locale": "english", + "default_timezone": "Europe/Amsterdam" + }, + "memcache": { + "enabled": true, + "compressed": true, + "hostname": "localhost", + "port": 11211 + }, + "class_map": { + "user": "User", + "blogpost": "BlogPost", + "blogcomment": "BlogComment", + "forumthread": "ForumThread", + "forumpost": "ForumPost", + "forumcategory": "ForumCategory", + "permission": "Permission" + }, + "components": [ + "router", + "errorhandler" + ], + "smtp": { + "from": "boxonabudget@cryto.net", + "from_name": "BoxOnABudget", + "host": "localhost", + "port": 25, + "username": "root", + "password": "" + }, + "debugmode": true, + "salt": "abcdef" +}