summaryrefslogtreecommitdiff
path: root/settings.json.template
diff options
context:
space:
mode:
authorPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-06-02 12:15:02 +0100
committerPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-06-02 12:15:02 +0100
commit280b4ab9c7f44dcaf5fa776dd900138e4ac08609 (patch)
tree3e9681dbda5f785704da6e1a792e849239bba364 /settings.json.template
parentfd4efc3b3162f98c6fc0a157f07aacc481b197c0 (diff)
downloadetherpad-lite-280b4ab9c7f44dcaf5fa776dd900138e4ac08609.zip
Create a template of the settings file
Diffstat (limited to 'settings.json.template')
-rw-r--r--settings.json.template35
1 files changed, 35 insertions, 0 deletions
diff --git a/settings.json.template b/settings.json.template
new file mode 100644
index 00000000..3c985f0f
--- /dev/null
+++ b/settings.json.template
@@ -0,0 +1,35 @@
+/*
+ This file must be valid JSON. But comments are allowed
+
+ Please edit settings.json, not settings.json.template
+*/
+{
+ "port" : 9001,
+
+ //The Type of the database. You can choose between sqlite and mysql
+ "dbType" : "sqlite",
+ //the database specific settings
+ "dbSettings" : {
+ "filename" : "../var/sqlite.db"
+ },
+
+ /* An Example of MySQL Configuration
+ "dbType" : "mysql",
+ "dbSettings" : {
+ "user" : "root",
+ "host" : "localhost",
+ "password": "",
+ "database": "store"
+ },
+ */
+
+ //if true, every http request will be loged to stdout
+ "logHTTP" : true,
+
+ //the default text of a pad
+ "defaultPadText" : "Welcome to Etherpad Lite!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nEtherpad Lite on Github: http:\/\/j.mp/ep-lite\n",
+
+ /* if true, all css & js will be minified before sending to the client. This will improve the loading performance massivly,
+ but makes it impossible to debug the javascript/css */
+ "minify" : true
+}