init
This commit is contained in:
9
apps/server/dist/index.js
vendored
Normal file
9
apps/server/dist/index.js
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import express from 'express';
|
||||
const app = express();
|
||||
const port = process.env.PORT || 3001;
|
||||
app.get('/', (req, res) => {
|
||||
res.json({ message: 'Cable Creations API' });
|
||||
});
|
||||
app.listen(port, () => {
|
||||
console.log(`Server running at http://localhost:${port}`);
|
||||
});
|
||||
Reference in New Issue
Block a user