diff options
Diffstat (limited to 'bot/src/api/server.js')
| -rw-r--r-- | bot/src/api/server.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/src/api/server.js b/bot/src/api/server.js index 74d8511..15211eb 100644 --- a/bot/src/api/server.js +++ b/bot/src/api/server.js @@ -74,8 +74,8 @@ export const apiServer = (client) => { }); // Start the server - app.listen(process.env.port, () => { - console.log(`[i] Starting API at http://localhost:${process.env.port}`); + app.listen(process.env.PORT, () => { + console.log(`[i] Starting API at http://localhost:${process.env.PORT}`); }); }; |
