We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b16887 + 52c1482 commit be6fe30Copy full SHA for be6fe30
AutomaticClockOuts/config.js
@@ -1,13 +1,13 @@
1
const config = {
2
- endpoint: "xxx",
3
- key: "xxx",
+ endpoint: process.env["ENDPOINT"],
+ key: process.env["KEY"],
4
databaseId: "time-tracker-db",
5
containerId: "time_entry",
6
partitionKey: { kind: "Hash", paths: ["/category"] },
7
- clientId: "xxx",
8
- authority: "xxx",
9
- clientSecret: "xxx",
10
- slackWebHook: "xxx"
+ clientId: process.env["CLIENT_ID"],
+ authority: process.env["AUTHORITY"],
+ clientSecret: process.env["CLIENT_SECRET"],
+ slackWebHook: process.env["SLACK_WEBHOOK"]
11
};
12
13
module.exports = config;
0 commit comments