Removed comments in example json.

This commit is contained in:
claudemiro
2015-01-18 08:40:36 -03:00
parent 5218fb2ca4
commit 67676742a9
+13 -13
View File
@@ -40,21 +40,21 @@ $ go install github.com/dimiro1/ipe
```json ```json
{ {
"Host": ":8080", // Host and Port "Host": ":8080",
"Expvar": true, // Export variables to /debug/vars "Expvar": true,
"User": "Username", // Username for Expvar "User": "Username",
"Password": "123456", // Password for Expvar "Password": "123456",
"Apps": [ "Apps": [
{ {
"ApplicationDisabled": false, // Disable this app "ApplicationDisabled": false,
"OnlySSL": false, // If this application is avaibale only in SSL "OnlySSL": false,
"Secret": "APP_SECRET", // The secret key, do't tell anyone "Secret": "APP_SECRET",
"Key": "APP_KEY", // Application Key "Key": "APP_KEY",
"Name": "APP_NAME", // This app name "Name": "APP_NAME",
"AppID": "APP_ID", // This app ID "AppID": "APP_ID",
"UserEvents": true, // true if Client events are enabled "UserEvents": true,
"WebHooks": true, // true if WebHooks are enabled "WebHooks": true,
"URLWebHook": "http://localhost:4567/php/hook.php" // Url for webhooks "URLWebHook": "http://localhost:4567/php/hook.php"
} }
] ]
} }