tea-project-mikelitooz
Version:
A project for registering OSS on the tea protocol.
15 lines (11 loc) • 341 B
text/typescript
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}`);
});