import express from 'express';

const app = express();
const PORT = process.env.PORT || 3000;

// Middleware and configurations can be set up here

app.get('/', (req, res) => {
    res.send('Welcome to the Tea Project!');
});

// Start the server
app.listen(PORT, () => {
    console.log(`Server is running on http://localhost:${PORT}`);
});