Show port

This commit is contained in:
Christopher Cookman 2024-08-05 14:01:31 -06:00
parent 5ab79692d1
commit 31c37eded7
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -90,5 +90,5 @@ app.post('/shorten', (req, res) => { // Shorten URL
port = process.env.SERVER_PORT || 3000;
app.listen(port, () => {
console.log('Server is running on port 3000');
console.log(`Server is running on port ${port}`);
});