Skip to content

Commit 8533734

Browse files
committed
Update examples
1 parent 618f776 commit 8533734

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/bulk_import_example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var CountlyBulk = require("../lib/countly").Bulk;
22

33
var server = new CountlyBulk({
4-
app_key: "{YOUR-APP-KEY}",
4+
app_key: "YOUR_APP_KEY",
55
url: "https://try.count.ly", //your server goes here
66
debug: true
77
});

examples/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var Countly = require("../lib/countly.js");
44

55
Countly.init({
6-
app_key: "{YOUR-APP-KEY}",
6+
app_key: "YOUR_APP_KEY",
77
url: "https://try.count.ly", //your server goes here
88
debug: true
99
});

examples/multi-process.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (cluster.isMaster) {
1313
var Countly = require("../lib/countly.js");
1414

1515
Countly.init({
16-
app_key: "{YOUR-APP-KEY}",
16+
app_key: "YOUR_APP_KEY",
1717
url: "https://try.count.ly", //your server goes here
1818
debug: true
1919
});

0 commit comments

Comments
 (0)