From 67676742a9f0374787f78b53301e28936197686b Mon Sep 17 00:00:00 2001 From: claudemiro Date: Sun, 18 Jan 2015 08:40:36 -0300 Subject: [PATCH] Removed comments in example json. --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 5d5c5dc..d6471ba 100644 --- a/README.md +++ b/README.md @@ -40,21 +40,21 @@ $ go install github.com/dimiro1/ipe ```json { - "Host": ":8080", // Host and Port - "Expvar": true, // Export variables to /debug/vars - "User": "Username", // Username for Expvar - "Password": "123456", // Password for Expvar + "Host": ":8080", + "Expvar": true, + "User": "Username", + "Password": "123456", "Apps": [ { - "ApplicationDisabled": false, // Disable this app - "OnlySSL": false, // If this application is avaibale only in SSL - "Secret": "APP_SECRET", // The secret key, do't tell anyone - "Key": "APP_KEY", // Application Key - "Name": "APP_NAME", // This app name - "AppID": "APP_ID", // This app ID - "UserEvents": true, // true if Client events are enabled - "WebHooks": true, // true if WebHooks are enabled - "URLWebHook": "http://localhost:4567/php/hook.php" // Url for webhooks + "ApplicationDisabled": false, + "OnlySSL": false, + "Secret": "APP_SECRET", + "Key": "APP_KEY", + "Name": "APP_NAME", + "AppID": "APP_ID", + "UserEvents": true, + "WebHooks": true, + "URLWebHook": "http://localhost:4567/php/hook.php" } ] }