Skip to content

Commit

Permalink
Remove: the default value of eventConfig in loadenv.js
Browse files Browse the repository at this point in the history
kmc7468 committed Mar 26, 2024
1 parent 751d32d commit 591f922
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions loadenv.js
Original file line number Diff line number Diff line change
@@ -43,16 +43,5 @@ module.exports = {
slackWebhookUrl: {
report: process.env.SLACK_REPORT_WEBHOOK_URL || "", // optional
},
eventConfig: (process.env.EVENT_CONFIG &&
JSON.parse(process.env.EVENT_CONFIG)) || {
mode: "2024spring",
credit: {
name: "넙죽코인",
initialAmount: 0,
},
period: {
startAt: "2024-02-23T00:00:00+09:00",
endAt: "2024-03-19T00:00:00+09:00",
},
}, // optional
eventConfig: process.env.EVENT_CONFIG && JSON.parse(process.env.EVENT_CONFIG), // optional
};

0 comments on commit 591f922

Please sign in to comment.