summaryrefslogtreecommitdiff
path: root/settings.json.template_windows
diff options
context:
space:
mode:
authorPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-08-11 22:00:52 +0100
committerPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-08-11 22:00:52 +0100
commit53cdd893affea8947a325392b107355c64095b74 (patch)
treebdf2abd9bd086ed8a4e75d4876c1bffb48ef4f30 /settings.json.template_windows
parent38801fa3b295b1f38948c5c532dfd331472e0b79 (diff)
downloadetherpad-lite-53cdd893affea8947a325392b107355c64095b74.zip
added a buildForWindows script
Diffstat (limited to 'settings.json.template_windows')
-rw-r--r--settings.json.template_windows38
1 files changed, 38 insertions, 0 deletions
diff --git a/settings.json.template_windows b/settings.json.template_windows
new file mode 100644
index 00000000..235ec71a
--- /dev/null
+++ b/settings.json.template_windows
@@ -0,0 +1,38 @@
+/*
+ This file must be valid JSON. But comments are allowed
+
+ Please edit settings.json, not settings.json.template
+*/
+{
+ //Ip and port which etherpad should bind at
+ "ip": "0.0.0.0",
+ "port" : 9001,
+
+ //The Type of the database. You can choose between sqlite and mysql
+ "dbType" : "dirty",
+ //the database specific settings
+ "dbSettings" : {
+ "filename" : "../var/dirty.db"
+ },
+
+ /* An Example of MySQL Configuration
+ "dbType" : "mysql",
+ "dbSettings" : {
+ "user" : "root",
+ "host" : "localhost",
+ "password": "",
+ "database": "store"
+ },
+ */
+
+ //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" : false,
+
+ /* This is the path to the Abiword executable. Setting it to null, disables abiword.
+ Abiword is needed to enable the import/export of pads*/
+ "abiword" : null
+}