We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 751d32d + 591f922 commit 64c0bafCopy full SHA for 64c0baf
loadenv.js
@@ -43,16 +43,5 @@ module.exports = {
43
slackWebhookUrl: {
44
report: process.env.SLACK_REPORT_WEBHOOK_URL || "", // optional
45
},
46
- eventConfig: (process.env.EVENT_CONFIG &&
47
- JSON.parse(process.env.EVENT_CONFIG)) || {
48
- mode: "2024spring",
49
- credit: {
50
- name: "넙죽코인",
51
- initialAmount: 0,
52
- },
53
- period: {
54
- startAt: "2024-02-23T00:00:00+09:00",
55
- endAt: "2024-03-19T00:00:00+09:00",
56
57
- }, // optional
+ eventConfig: process.env.EVENT_CONFIG && JSON.parse(process.env.EVENT_CONFIG), // optional
58
};
0 commit comments