This commit is contained in:
Baney 2025-04-22 00:21:44 -04:00
parent 433b7c4681
commit 8738371bbb
3 changed files with 10 additions and 3 deletions

3
.env
View File

@ -8,3 +8,6 @@ DB_PORT=3306
DB_USER=your_db_user
DB_PASSWORD=your_db_password
DB_NAME=warehouse_heatmap
# Slack Incoming Webhook URL
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/XXX/YYY/ZZZ

View File

@ -9,6 +9,8 @@
"express": "^4.18.2",
"mysql2": "^3.2.0",
"knex": "^2.4.2",
"body-parser": "^1.20.2"
"body-parser": "^1.20.2",
"dotenv": "^16.0.0",
"axios": "^1.3.0"
}
}

View File

@ -124,3 +124,5 @@ app.get('/api/export', async (req, res) => {
});
app.listen(PORT, () => console.log(`Server running on http://localhost:${PORT}`));
// push goddamn it!